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
uv run alembic revision --autogenerate -m "Add user table"

# Check if there are pending changes
uv run alembic check

Apply Migrations

Related skills
Installs
1
GitHub Stars
2
First Seen
Apr 1, 2026