mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	This commit renames the "Huddle" Django model class to "DirectMessageGroup", while maintaining the same table -- "zerver_huddle". Fixes part of #28640.
		
			
				
	
	
		
			20 lines
		
	
	
		
			549 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			549 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 5.0.6 on 2024-07-05 10:44
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0545_attachment_content_type"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.SeparateDatabaseAndState(
 | 
						|
            database_operations=[],
 | 
						|
            state_operations=[
 | 
						|
                migrations.RenameModel(old_name="Huddle", new_name="DirectMessageGroup"),
 | 
						|
                migrations.AlterModelTable(name="directmessagegroup", table="zerver_huddle"),
 | 
						|
            ],
 | 
						|
        )
 | 
						|
    ]
 |