Commit 757661c4 authored by Ray Rafael Abenido's avatar Ray Rafael Abenido

Added to models.py of forum application database schema named 'Posts'. Four...

Added to models.py of forum application database schema named 'Posts'. Four test records were added into this database. A superuser account for my use was also created.
parent cc976fd6
from django.contrib import admin from django.contrib import admin
# Register your models here. # Register your models here.
from .models import Post
admin.site.register(Post)
\ No newline at end of file
# Generated by Django 3.2.12 on 2022-03-30 13:22
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.TextField()),
('pub_date', models.DateTimeField(auto_now_add=True)),
],
),
]
from django.db import models from django.db import models
# Create your models here. # Create your models here.
class Post(models.Model):
post_title = models.CharField(max_length=100)
post_body = models.TextField()
pub_date = models.DateTimeField(auto_now_add=True)
def __str__(self):
return self.post_title
\ No newline at end of file
...@@ -37,6 +37,7 @@ ALLOWED_HOSTS = [] ...@@ -37,6 +37,7 @@ ALLOWED_HOSTS = []
INSTALLED_APPS = [ INSTALLED_APPS = [
'announcements.apps.AnnouncementsConfig', 'announcements.apps.AnnouncementsConfig',
'homepage.apps.HomepageConfig', 'homepage.apps.HomepageConfig',
'forum.apps.ForumConfig',
'django.contrib.admin', 'django.contrib.admin',
'django.contrib.auth', 'django.contrib.auth',
'django.contrib.contenttypes', 'django.contrib.contenttypes',
......
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