123456789101112131415161718192021 |
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('lists', '0002_item_text'),
- ]
- operations = [
- migrations.CreateModel(
- name='List',
- fields=[
- ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ],
- ),
- ]
|