db-migration-mysql-postgres

Installation
SKILL.md

MySQL → Postgres Migration

Going from MySQL to Postgres is mostly an upgrade. You gain JSONB with rich operators, partial indexes, true booleans, ARRAY columns, generated columns since 12, and rich CHECK constraints. Plan for the data conversion carefully — pgloader handles most of it.

The opinion

pgloader for bulk migration. Dual-write cutover for zero-downtime. Plan for the schema upgrades — don't just translate, take advantage of Postgres features (JSONB instead of JSON, BOOLEAN instead of TINYINT, partial indexes, generated columns).

Pre-migration: what improves

Installs
2
GitHub Stars
21
First Seen
Sep 8, 2026
db-migration-mysql-postgres — sandeepmvl/rails-skills