mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	We no longer support Postgres versions missing this syntax. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
		
			
				
	
	
		
			21 lines
		
	
	
		
			544 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			544 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('zerver', '0082_index_starred_user_messages'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RunSQL(
 | 
						|
            '''
 | 
						|
            CREATE INDEX IF NOT EXISTS zerver_usermessage_mentioned_message_id
 | 
						|
                ON zerver_usermessage (user_profile_id, message_id)
 | 
						|
                WHERE (flags & 8) != 0;
 | 
						|
            ''',
 | 
						|
            reverse_sql='DROP INDEX zerver_usermessage_mentioned_message_id;'
 | 
						|
        ),
 | 
						|
    ]
 |