From 3518be47659103ca0ba60135f7ae296cbbdabef7 Mon Sep 17 00:00:00 2001 From: Matteo Rosati Date: Tue, 10 Feb 2026 19:07:48 +0100 Subject: [PATCH] add building model (base) --- api/models.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api/models.py b/api/models.py index 71a8362..a66fd62 100644 --- a/api/models.py +++ b/api/models.py @@ -1,3 +1,6 @@ from django.db import models -# Create your models here. + +class Building(models.Model): + geojson_id = models.IntegerField() + health = models.FloatField()