05/02 Phase B

This commit is contained in:
Nguyen Ngo
2026-05-02 10:55:28 -04:00
parent aca2e47583
commit bad39522fa
8 changed files with 386 additions and 53 deletions
+1
View File
@@ -63,6 +63,7 @@ class Inspection(db.Model):
notes = db.Column(db.Text) # inspector free-text notes
form_data = db.Column(db.JSON) # filled form field responses {field_id: value}
completed_at = db.Column(db.DateTime)
mobile_local_id = db.Column(db.String(64), nullable=True, index=True) # idempotency key for mobile submissions
# ── Re-inspection / follow-up workflow ────────────────────────────────
parent_inspection_id = db.Column(