Fix table migration (#12697)

- Prevent error on MYSQL migration
This commit is contained in:
Oliver
2026-08-25 08:57:50 +10:00
committed by GitHub
parent 08b0bb8088
commit 176ef1af81
@@ -23,5 +23,5 @@ class Migration(migrations.Migration):
dependencies = [('users', '0015_alter_userprofile_type')] dependencies = [('users', '0015_alter_userprofile_type')]
operations = [ operations = [
migrations.RunPython(remove_legacy_table, reverse_code=migrations.RunPython.noop) migrations.RunPython(remove_legacy_table, reverse_code=migrations.RunPython.noop, atomic=False)
] ]