Files
zulip/zerver/migrations/0710_realm_topics_policy.py
Vector73 62c67eae8e settings: Add a new topics_policy realm setting.
Added a new realm setting, `topics_policy` and deprecated
`mandatory_topics` setting as it now replaced by `topics_policy`.

Fixes part of #33549.
2025-06-17 17:05:58 -07:00

17 lines
395 B
Python

# Generated by Django 5.1.7 on 2025-03-24 09:05
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0709_navigationview"),
]
operations = [
migrations.AddField(
model_name="realm",
name="topics_policy",
field=models.PositiveSmallIntegerField(null=True),
),
]