Schema Migration
9 items tagged with "schema-migration"
Tutorials6
How to manage versioned database migrations with Flyway
Set up Flyway, write versioned SQL migrations, and apply them repeatably across environments with validation and history tracking.
How to manage database migrations with Liquibase changelogs
Define schema changes in declarative Liquibase changesets, apply and roll them back, and track state across environments.
How to run SQLAlchemy database migrations with Alembic
Generate, edit, and apply Alembic migrations for a Python SQLAlchemy project, including autogeneration and safe downgrades.
How to evolve a database schema with Prisma Migrate
Use Prisma Migrate to turn schema.prisma changes into versioned SQL migrations and apply them in dev and production safely.
How to perform a zero-downtime database schema migration
Use the expand-and-contract pattern to change a live schema without downtime, keeping old and new code compatible during rollout.
How to migrate a PostgreSQL database using logical replication
Move a PostgreSQL database to a new server with near-zero downtime using publications, subscriptions, and a final cutover.