mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
24 lines
642 B
Python
24 lines
642 B
Python
# Generated by Django 5.2.3 on 2025-06-30 14:38
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("zerver", "0725_realmuserdefault_web_left_sidebar_unreads_count_summary_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="stream",
|
|
name="can_resolve_topics_group",
|
|
field=models.ForeignKey(
|
|
null=True,
|
|
on_delete=django.db.models.deletion.RESTRICT,
|
|
related_name="+",
|
|
to="zerver.usergroup",
|
|
),
|
|
),
|
|
]
|