v0.13.0 - Add Consumption Sheets module and database migration system

This commit is contained in:
Javier
2026-01-29 22:12:55 -06:00
parent 3ec00613ca
commit 5097ceb82f
3 changed files with 328 additions and 1 deletions

4
app.py
View File

@@ -54,6 +54,10 @@ if not os.path.exists(db_path):
create_default_users()
print("Database initialized!")
# Run migrations to apply any pending database changes
from migrations import run_migrations
run_migrations()
# ==================== ROUTES: AUTHENTICATION ====================