mirror of https://github.com/zulip/zulip.git
20 lines
436 B
Python
20 lines
436 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('zerver', '0024_realm_allow_message_editing'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='realm',
|
||
|
name='message_content_edit_limit_seconds',
|
||
|
field=models.IntegerField(default=600),
|
||
|
),
|
||
|
]
|