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

Installs
3
GitHub Stars
379
First Seen
May 27, 2026
alembic — aiskillstore/marketplace