alembic-patterns
Installation
SKILL.md
Alembic Migration Patterns
Audience: Python developers working with SQLAlchemy databases Goal: Provide migration patterns for safe schema evolution with Alembic
Alembic Setup
# Initialize
alembic init alembic
# Configure alembic.ini
sqlalchemy.url = postgresql://user:pass@localhost/db
alembic/env.py Configuration
from app.models import Base