Files
zulip/zerver/migrations/0263_stream_stream_post_policy.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

20 lines
470 B
Python

# Generated by Django 1.11.26 on 2020-01-27 22:03
from django.db import migrations, models
STREAM_POST_POLICY_EVERYONE = 1
class Migration(migrations.Migration):
dependencies = [
("zerver", "0262_mutedtopic_date_muted"),
]
operations = [
migrations.AddField(
model_name="stream",
name="stream_post_policy",
field=models.PositiveSmallIntegerField(default=STREAM_POST_POLICY_EVERYONE),
),
]