Alembic Database Migrations
Alembic is a database migration tool for SQLAlchemy projects that provides version control for your database schema.
Quick Start
Create Migration (Autogenerate)
# Generate migration from model changes
uv run alembic revision --autogenerate -m "Add user table"
# Check if there are pending changes
uv run alembic check
Apply Migrations
# Upgrade to latest version
uv run alembic upgrade head
# Upgrade to specific revision
uv run al
[Description truncada. Veja o README completo no GitHub.]