Skip to content
Snippets Groups Projects
Commit d622380c authored by Jeremy Bowman's avatar Jeremy Bowman
Browse files

Account for Django block on DDL in transactions

parent 59c65c9d
No related branches found
Tags release-2021-08-25-12.36
No related merge requests found
......@@ -31,5 +31,5 @@ class Migration(migrations.Migration):
]
operations = [
migrations.RunPython(add_email_uniqueness_constraint)
migrations.RunPython(add_email_uniqueness_constraint, atomic=False)
]
......@@ -53,5 +53,5 @@ class Migration(migrations.Migration):
'get_latest_by': 'created',
},
),
migrations.RunPython(bump_pk_start, reverse_code=migrations.RunPython.noop),
migrations.RunPython(bump_pk_start, reverse_code=migrations.RunPython.noop, atomic=False),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment