Files
zulip/zerver/migrations/0229_stream_message_retention_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

19 lines
431 B
Python

# Generated by Django 1.11.20 on 2019-06-05 14:21
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0228_userprofile_demote_inactive_streams"),
]
operations = [
migrations.AddField(
model_name="stream",
name="message_retention_days",
field=models.IntegerField(default=None, null=True),
),
]