mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			446 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			446 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0111_botuserstatedata"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RunSQL(
 | 
						|
            """
 | 
						|
            CREATE INDEX zerver_mutedtopic_stream_topic
 | 
						|
            ON zerver_mutedtopic
 | 
						|
            (stream_id, upper(topic_name))
 | 
						|
            """,
 | 
						|
            reverse_sql="DROP INDEX zerver_mutedtopic_stream_topic;",
 | 
						|
        ),
 | 
						|
    ]
 |