Migration (Schema) - CI/CD Glossary Definition
A schema migration is a versioned script that changes database structure (a new column, index, or table). Migrations run in order in CI/CD so all environments converge on the same schema.
Related guides
ORM - CI/CD Glossary DefinitionAn ORM maps database rows to in-memory objects so developers query in their host language. It speeds work but…
Breaking Change - CI/CD Glossary DefinitionA breaking change forces consumers to update their code or config - a removed API or changed contract - and t…
Transaction Isolation - CI/CD Glossary DefinitionTransaction isolation defines how concurrent transactions see each other’s uncommitted work, from read-uncomm…