Sith/club/migrations/0008_auto_20170515_2214.py

17 lines
411 B
Python
Raw Normal View History

2017-05-20 10:36:18 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
2018-10-04 19:29:19 +00:00
dependencies = [("club", "0007_auto_20170324_0917")]
2017-05-20 10:36:18 +00:00
operations = [
migrations.AlterField(
2018-10-04 19:29:19 +00:00
model_name="club",
name="id",
2017-05-20 10:36:18 +00:00
field=models.AutoField(primary_key=True, serialize=False, db_index=True),
2018-10-04 19:29:19 +00:00
)
2017-05-20 10:36:18 +00:00
]