2017-11-16 00:55:49 +01:00
|
|
|
from django.db import migrations
|
2017-04-28 01:26:50 +02:00
|
|
|
from django.db.backends.postgresql_psycopg2.schema import DatabaseSchemaEditor
|
|
|
|
from django.db.migrations.state import StateApps
|
|
|
|
|
2020-01-14 21:59:46 +01:00
|
|
|
|
2017-11-05 06:54:00 +01:00
|
|
|
def clear_analytics_tables(apps: StateApps, schema_editor: DatabaseSchemaEditor) -> None:
|
2017-04-28 01:26:50 +02:00
|
|
|
UserCount = apps.get_model('analytics', 'UserCount')
|
|
|
|
StreamCount = apps.get_model('analytics', 'StreamCount')
|
|
|
|
RealmCount = apps.get_model('analytics', 'RealmCount')
|
|
|
|
InstallationCount = apps.get_model('analytics', 'InstallationCount')
|
|
|
|
FillState = apps.get_model('analytics', 'FillState')
|
|
|
|
|
|
|
|
UserCount.objects.all().delete()
|
|
|
|
StreamCount.objects.all().delete()
|
|
|
|
RealmCount.objects.all().delete()
|
|
|
|
InstallationCount.objects.all().delete()
|
|
|
|
FillState.objects.all().delete()
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('analytics', '0010_clear_messages_sent_values'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.RunPython(clear_analytics_tables),
|
|
|
|
]
|