mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
migrations: Mark RunPython statements elidable.
This will make django automatically remove them when we run squashmigrations. There are still some RunSQL statements which we will have to take care of manually.
This commit is contained in:
@@ -20,5 +20,6 @@ class Migration(migrations.Migration):
|
||||
|
||||
operations = [
|
||||
migrations.RunPython(fix_bot_email_property,
|
||||
reverse_code=migrations.RunPython.noop),
|
||||
reverse_code=migrations.RunPython.noop,
|
||||
elidable=True),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user