mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed #22881 -- Better soft_applied migration detection
This commit is contained in:
parent
ecc06d44ed
commit
21c496ea52
3 changed files with 25 additions and 4 deletions
|
@ -25,6 +25,11 @@ class Migration(migrations.Migration):
|
|||
("id", models.AutoField(primary_key=True)),
|
||||
("fluffy", models.BooleanField(default=True)),
|
||||
],
|
||||
)
|
||||
),
|
||||
|
||||
migrations.AlterUniqueTogether(
|
||||
name='author',
|
||||
unique_together=set([('name', 'slug')]),
|
||||
),
|
||||
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue