Self-hostable website analytics on Django: a straightforward collector API, dashboards, a world map, and PDF reports.
analyticsdjangodockerhandcodedpythonself-hostedsqliteviteweb-analytics
1# Generated by Django 6.0.4 on 2026-04-17 03:58
2
3from django.db import migrations, models
4
5
6class Migration(migrations.Migration):
7
8 dependencies = [
9 ('properties', '0003_alter_property_custom_cards'),
10 ]
11
12 operations = [
13 migrations.AddIndex(
14 model_name='event',
15 index=models.Index(fields=['property', 'created_at'], name='properties__propert_9b5576_idx'),
16 ),
17 migrations.AddIndex(
18 model_name='event',
19 index=models.Index(fields=['property', 'event', 'created_at'], name='properties__propert_244021_idx'),
20 ),
21 ]