Files
zulip/zerver/migrations/0563_zulipinternal_can_delete.py
Tim Abbott afecb2eca6 migrations: Add missing elidable tags on RunPython/RunSQL steps.
This helps the squashmigrations tool know that it can squash these.
2024-08-23 17:15:35 -07:00

15 lines
367 B
Python

from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("zerver", "0562_remove_realm_create_web_public_stream_policy"),
]
operations = [
migrations.RunSQL(
"UPDATE zerver_realm SET delete_own_message_policy = 1 where string_id = 'zulipinternal'",
elidable=True,
)
]