Solutions for MEIM
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

0001_initial.py 668B

123456789101112131415161718192021222324
  1. # Generated by Django 2.1.3 on 2018-11-23 11:25
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. initial = True
  5. dependencies = [
  6. ]
  7. operations = [
  8. migrations.CreateModel(
  9. name='Notice',
  10. fields=[
  11. ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
  12. ('notice_title', models.CharField(max_length=80)),
  13. ('notice_text', models.CharField(max_length=400)),
  14. ('pub_start', models.DateTimeField()),
  15. ('pub_end', models.DateTimeField()),
  16. ],
  17. ),
  18. ]