Schema Migration
Everything on SkillVeris tagged Schema Migration — collected across the glossary, study notes, blog, and cheat sheets.
4 resources across 1 library
Interview Questions(4)
How Do You Design a Rollback Strategy for Schema Migrations?
A safe rollback strategy pairs every forward migration with a tested, reversible 'down' script or an expand-contract sequence, so a failed deploy can restore t…
What Makes a Database Migration Idempotent, and Why Does It Matter?
An idempotent migration produces the same final schema and data state no matter how many times it is run or re-run, so retries after a partial failure never du…
What Are Common Database Refactoring Techniques?
Database refactoring techniques are small, behavior-preserving changes to a schema — such as expand-and-contract column changes, splitting a table, or introduc…
What is the Shared Database Anti-Pattern?
The shared database anti-pattern occurs when multiple independently deployed services read and write the same database tables, recreating tight coupling at the…