Commit bbe4e819 authored by Bianca Aguilar's avatar Bianca Aguilar

Creating the Post model + Admin for the Forum app

parent a200ea0d
No preview for this file type
from django.contrib import admin
# Register your models here.
from .models import Post
class PostAdmin(admin.ModelAdmin):
model = Post
admin.site.register(Post, PostAdmin)
# Generated by Django 4.0.3 on 2022-03-16 04:37
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Post',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('post_title', models.CharField(max_length=100)),
('post_body', models.CharField(max_length=500)),
('pub_date', models.DateField()),
],
),
]
# Generated by Django 4.0.3 on 2022-03-16 04:49
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('forum', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='post',
name='post_title',
field=models.CharField(max_length=50),
),
migrations.AlterField(
model_name='post',
name='pub_date',
field=models.DateTimeField(verbose_name='Date Published'),
),
]
from django.db import models
# Create your models here.
class Post(models.Model):
post_title = models.CharField(max_length=50)
post_body = models.CharField(max_length=500)
pub_date = models.DateTimeField("Date Published")
def __str__(self):
return '{}'.format(self.post_title)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment