25 lines
668 B
Python
25 lines
668 B
Python
# Generated by Django 2.2.6 on 2019-11-19 12:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Notice',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('notice_title', models.CharField(max_length=80)),
|
|
('notice_text', models.CharField(max_length=400)),
|
|
('pub_start', models.DateTimeField()),
|
|
('pub_end', models.DateTimeField()),
|
|
],
|
|
),
|
|
]
|