feat: alembic migration added

This commit is contained in:
2025-06-04 21:43:39 -04:00
parent a91469257b
commit ccb934986f
21 changed files with 348 additions and 9 deletions
+13
View File
@@ -0,0 +1,13 @@
# Database Migration with Alembic
## Install Alembic
## Init Alembic
## Migration
```bash
alembic revision --autogenerate -m "add items table"
alembic upgrade head
```