mirror of
https://github.com/zulip/zulip.git
synced 2025-10-28 10:33:54 +00:00
This commit replaces invite_by_admins_policy, which was a bool field, with a new enum field invite_by_realm_policy. Though the final goal is to add moderators and full members option using COMMON_POLICY_TYPES, but this will be done in a separate commit to make this easy for review.
18 lines
356 B
Python
18 lines
356 B
Python
# Generated by Django 3.1.7 on 2021-04-01 19:32
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("zerver", "0317_migrate_to_invite_to_realm_policy"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name="realm",
|
|
name="invite_by_admins_only",
|
|
),
|
|
]
|