mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	index_together is slated for removal in Django 5.1: https://docs.djangoproject.com/en/4.2/internals/deprecation/#deprecation-removed-in-5-1 We set the optional index names to match the previously generated index names to avoid adding new migrations. Signed-off-by: Anders Kaseorg <anders@zulip.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			527 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			527 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 3.2.6 on 2021-08-31 19:17
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0342_realm_demo_organization_scheduled_deletion_date"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddIndex(
 | 
						|
            model_name="useractivityinterval",
 | 
						|
            index=models.Index(
 | 
						|
                fields=["user_profile", "end"],
 | 
						|
                name="zerver_useractivityinterval_user_profile_id_end_bb3bfc37_idx",
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
    ]
 |