mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 12:33:40 +00:00
This commit adds a new `group_size` field to the `DirectMessageGroup` model, and backfills its value to each of the existing direct message groups. Fixes part of #25713
18 lines
410 B
Python
18 lines
410 B
Python
# Generated by Django 5.0.6 on 2024-08-21 13:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("zerver", "0574_backfill_directmessagegroup_group_size"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="directmessagegroup",
|
|
name="group_size",
|
|
field=models.IntegerField(),
|
|
),
|
|
]
|