mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	Part of #19272 We still keep refering to this model with "MutedTopic" to reduce the diff size of this commit. The alias will be removed in the next commit. This commit skips on renaming the `date_muted` field to something more general. That will be done in further commits, along with the code and API changes.
		
			
				
	
	
		
			22 lines
		
	
	
		
			471 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			471 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 3.2.5 on 2021-07-23 13:15
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0339_remove_realm_add_emoji_by_admins_only"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RenameModel(
 | 
						|
            old_name="MutedTopic",
 | 
						|
            new_name="UserTopic",
 | 
						|
        ),
 | 
						|
        migrations.AlterModelTable(
 | 
						|
            name="usertopic",
 | 
						|
            table="zerver_mutedtopic",
 | 
						|
        ),
 | 
						|
    ]
 |