mirror of https://github.com/zulip/zulip.git
18 lines
372 B
Python
18 lines
372 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('zerver', '0044_reaction'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='realm',
|
||
|
name='waiting_period_threshold',
|
||
|
field=models.PositiveIntegerField(default=0),
|
||
|
),
|
||
|
]
|