Files
zulip/zerver/migrations/0035_realm_message_retention_period_days.py
Anders Kaseorg 6e4c3e41dc python: Normalize quotes with Black.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-02-12 13:11:19 -08:00

17 lines
374 B
Python

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0034_userprofile_enable_online_push_notifications"),
]
operations = [
migrations.AddField(
model_name="realm",
name="message_retention_days",
field=models.IntegerField(null=True),
),
]