mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #28152 -- Made migrations serialize sets as set literals rather than set().
This commit is contained in:
parent
912ef7f49d
commit
f599747fc8
8 changed files with 15 additions and 8 deletions
|
@ -25,6 +25,6 @@ class Migration(migrations.Migration):
|
|||
),
|
||||
migrations.AlterUniqueTogether(
|
||||
name='author',
|
||||
unique_together=set([('name', 'slug')]),
|
||||
unique_together={('name', 'slug')},
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue