mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +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
		
	
	
		
			411 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			411 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 5.0.6 on 2024-08-16 06:36
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0572_alter_usergroup_can_manage_group"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="directmessagegroup",
 | 
						|
            name="group_size",
 | 
						|
            field=models.IntegerField(null=True),
 | 
						|
        ),
 | 
						|
    ]
 |