Self-hostable uptime monitor and status page on Django: HTTP checks, Lighthouse audits, SEO crawls, and email and Discord alerts.
djangodockerhandcodedpythonself-hostedsqlitestatus-pageuptime-monitoringvite
1# Generated by Django 4.0.6 on 2022-07-17 03:05
2
3from django.db import migrations, models
4
5
6class Migration(migrations.Migration):
7
8 dependencies = [
9 ('properties', '0002_property_last_lighthouse_run_at_and_more'),
10 ]
11
12 operations = [
13 migrations.AddIndex(
14 model_name='property',
15 index=models.Index(fields=['url'], name='properties__url_7229e0_idx'),
16 ),
17 migrations.AddIndex(
18 model_name='property',
19 index=models.Index(fields=['user'], name='properties__user_id_c32bda_idx'),
20 ),
21 ]