2019-02-02 23:53:20 +01:00
|
|
|
from django.db import migrations
|
2016-11-01 01:51:58 +01:00
|
|
|
|
2020-01-14 21:59:46 +01:00
|
|
|
|
2016-11-01 01:51:58 +01:00
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
2021-02-12 08:20:45 +01:00
|
|
|
("analytics", "0005_alter_field_size"),
|
2016-11-01 01:51:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterUniqueTogether(
|
2021-02-12 08:20:45 +01:00
|
|
|
name="installationcount",
|
|
|
|
unique_together={("property", "subgroup", "end_time", "interval")},
|
2016-11-01 01:51:58 +01:00
|
|
|
),
|
|
|
|
migrations.AlterUniqueTogether(
|
2021-02-12 08:20:45 +01:00
|
|
|
name="realmcount",
|
|
|
|
unique_together={("realm", "property", "subgroup", "end_time", "interval")},
|
2016-11-01 01:51:58 +01:00
|
|
|
),
|
|
|
|
migrations.AlterUniqueTogether(
|
2021-02-12 08:20:45 +01:00
|
|
|
name="streamcount",
|
|
|
|
unique_together={("stream", "property", "subgroup", "end_time", "interval")},
|
2016-11-01 01:51:58 +01:00
|
|
|
),
|
|
|
|
migrations.AlterUniqueTogether(
|
2021-02-12 08:20:45 +01:00
|
|
|
name="usercount",
|
|
|
|
unique_together={("user", "property", "subgroup", "end_time", "interval")},
|
2016-11-01 01:51:58 +01:00
|
|
|
),
|
|
|
|
]
|