mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			599 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			599 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 5.0.6 on 2024-05-08 01:16
 | 
						|
 | 
						|
from django.contrib.postgres.operations import AddIndexConcurrently
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    atomic = False
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0519_archivetransaction_restored_timestamp"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        AddIndexConcurrently(
 | 
						|
            model_name="attachment",
 | 
						|
            index=models.Index(
 | 
						|
                models.F("realm"),
 | 
						|
                models.F("create_time"),
 | 
						|
                name="zerver_attachment_realm_create_time",
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
    ]
 |