0003_list.py 507 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.11.21 on 2019-06-20 03:55
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('lists', '0002_item_text'),
  8. ]
  9. operations = [
  10. migrations.CreateModel(
  11. name='List',
  12. fields=[
  13. ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
  14. ],
  15. ),
  16. ]