Merged branch buenaflor/announcements

parent 9a22bcef
from django.contrib import admin
# Register your models here.
from .models import Announcement
admin.site.register(Announcement)
\ No newline at end of file
# Generated by Django 4.0.3 on 2022-03-23 12:51
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Announcements',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('announcement_title', models.CharField(max_length=50)),
('announcement_body', models.CharField(max_length=500)),
('pub_date', models.DateTimeField(verbose_name='Date Published')),
],
),
]
# Generated by Django 4.0.3 on 2022-03-23 13:03
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('announcements', '0001_initial'),
]
operations = [
migrations.RenameModel(
old_name='Announcements',
new_name='Announcement',
),
]
from django.db import models
# Create your models here.
class Announcement(models.Model):
announcement_title = models.CharField(max_length=50)
announcement_body = models.CharField(max_length=500)
pub_date = models.DateTimeField("Date Published")
def __str__(self):
return self.announcement_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