mirror of https://github.com/zulip/zulip.git
27 lines
857 B
Python
27 lines
857 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")},
|
|
),
|
|
]
|