Add database migrations + README

- migrations/001_initial.sql: full schema with 12 tables, triggers, indexes
- migrate.py: idempotent migration runner with version tracking
- README.md: deploy instructions, architecture overview
- .gitignore: exclude migration tracking data
This commit is contained in:
Jetour BI
2026-06-18 20:43:33 +00:00
parent 8f206aa4f1
commit 9ff9ec27e9
4 changed files with 409 additions and 0 deletions

1
.gitignore vendored
View File

@@ -5,3 +5,4 @@ __pycache__/
.env
*.log
.DS_Store
migrations/_migrations*