mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Generated by `pyupgrade --py3-plus --keep-percent-format` on all our Python code except `zthumbor` and `zulip-ec2-configure-interfaces`, followed by manual indentation fixes. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			858 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			858 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('analytics', '0005_alter_field_size'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterUniqueTogether(
 | 
						|
            name='installationcount',
 | 
						|
            unique_together={('property', 'subgroup', 'end_time', 'interval')},
 | 
						|
        ),
 | 
						|
        migrations.AlterUniqueTogether(
 | 
						|
            name='realmcount',
 | 
						|
            unique_together={('realm', 'property', 'subgroup', 'end_time', 'interval')},
 | 
						|
        ),
 | 
						|
        migrations.AlterUniqueTogether(
 | 
						|
            name='streamcount',
 | 
						|
            unique_together={('stream', 'property', 'subgroup', 'end_time', 'interval')},
 | 
						|
        ),
 | 
						|
        migrations.AlterUniqueTogether(
 | 
						|
            name='usercount',
 | 
						|
            unique_together={('user', 'property', 'subgroup', 'end_time', 'interval')},
 | 
						|
        ),
 | 
						|
    ]
 |