0001_initial.py 490 B

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