django/tests/migrations/test_migrations_conflict_long_name/0002_second.py
Jon Dufresne 796be5901a Fixed #31769 -- Improved default naming of merged migrations.
47 gives 60 in total (47 + 5 + 5 + 3).
2020-07-20 15:04:22 +02:00

14 lines
317 B
Python

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [('migrations', '0001_initial')]
operations = [
migrations.CreateModel(
'Something',
[
('id', models.AutoField(primary_key=True)),
],
),
]