alembic
Installation
SKILL.md
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
alembic revision --autogenerate -m "Add user table"
# Check if there are pending changes
alembic check