Files
zulip/zerver/migrations/0361_realm_create_web_public_stream_policy.py
Sahil Batra 5f950e3efd models: Add create_web_public_stream_policy setting.
This commit adds create_web_public_stream_policy
field to Realm table which controls the roles that
can create web-public streams and by default its
value is set to POLICY_OWNERS_ONLY.
2021-10-05 09:28:28 -07:00

19 lines
416 B
Python

# Generated by Django 3.2.7 on 2021-10-04 06:23
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0360_merge_0358_0359"),
]
operations = [
migrations.AddField(
model_name="realm",
name="create_web_public_stream_policy",
field=models.PositiveSmallIntegerField(default=7),
),
]