Files
zulip/zerver/migrations/0291_realm_retention_days_not_null.py
Mateusz Mandera 7a03e2a7fe retention: Replace Realm.message_retention_days None value with -1.
To be more consistent with the meaning in the Stream model, and to make
it easier to have a reasonable settings API, we get rid of the None
value for Realm.message_retention_days in favor of the value -1 to
represent the "don't delete messages" default policy.
2020-06-24 10:33:21 -07:00

19 lines
417 B
Python

# Generated by Django 2.2.13 on 2020-06-24 09:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0290_remove_night_mode_add_color_scheme'),
]
operations = [
migrations.AlterField(
model_name='realm',
name='message_retention_days',
field=models.IntegerField(default=-1),
),
]