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

Apply Migrations

Installs
8
GitHub Stars
2
First Seen
Jan 24, 2026
alembic — slanycukr/riot-api-project