diff --git a/api/migrations/0001_initial.py b/api/migrations/0001_initial.py new file mode 100644 index 0000000..449752e --- /dev/null +++ b/api/migrations/0001_initial.py @@ -0,0 +1,22 @@ +# Generated by Django 6.0.2 on 2026-02-10 18:07 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Building', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('geojson_id', models.IntegerField()), + ('health', models.FloatField()), + ], + ), + ] diff --git a/db.sqlite3 b/db.sqlite3 new file mode 100644 index 0000000..76596f8 Binary files /dev/null and b/db.sqlite3 differ