mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	This is a follow-up to #19388. We will in the future allow patch requests to change the visibility of an existing topic, so `last_updated` is better name for this field. This commit does not affect the API or events in any way, but only the database.
		
			
				
	
	
		
			19 lines
		
	
	
		
			377 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			377 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 3.2.5 on 2021-07-29 11:47
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0347_realm_emoji_animated"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RenameField(
 | 
						|
            model_name="usertopic",
 | 
						|
            old_name="date_muted",
 | 
						|
            new_name="last_updated",
 | 
						|
        ),
 | 
						|
    ]
 |