Commit a277b63d authored by Maso Crisostomo's avatar Maso Crisostomo

Updated announcements app with models.

parent f5f3129c
from django.contrib import admin from django.contrib import admin
# Register your models here. # Register your models here.
from .models import Announcement
admin.site.register(Announcement)
\ No newline at end of file
# Generated by Django 3.2.12 on 2022-03-22 07:19
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Announcement',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('announcement_title', models.CharField(max_length=70)),
('announcement_body', models.CharField(max_length=1000)),
('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 Announcement(models.Model):
announcement_title = models.CharField(max_length=70)
announcement_body = models.CharField(max_length=1000)
pub_date = models.DateTimeField(auto_now_add=True)
\ No newline at end of file
...@@ -35,6 +35,7 @@ ALLOWED_HOSTS = [] ...@@ -35,6 +35,7 @@ ALLOWED_HOSTS = []
# Application definition # Application definition
INSTALLED_APPS = [ INSTALLED_APPS = [
'announcements.apps.AnnouncementsConfig',
'forum.apps.ForumConfig', 'forum.apps.ForumConfig',
'django.contrib.admin', 'django.contrib.admin',
'django.contrib.auth', 'django.contrib.auth',
......
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