Schema Drift - CI/CD Glossary Definition
Schema drift is the divergence between a database's actual schema and the schema your migrations describe, usually caused by manual changes made outside the migration tool.
In CI/CD
Tools like Atlas or Liquibase can diff the live schema against the expected one and fail the pipeline on drift, catching out-of-band changes before the next migration assumes a state that is no longer true.
Related guides
Database Migration - CI/CD Glossary DefinitionDatabase Migration: A database migration is a versioned, ordered change to a database schema or data, applied…
Schema Migration - CI/CD Glossary DefinitionSchema Migration: A schema migration changes the structure of a database (tables, columns, indexes, constrain…