mirror of https://github.com/zulip/zulip.git
21 lines
495 B
Python
21 lines
495 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.20 on 2019-06-05 14:21
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
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),
|
||
|
),
|
||
|
]
|