ORM - CI/CD Glossary Definition
An ORM maps database tables to objects in code, letting developers query and persist data without writing raw SQL.
An ORM (object-relational mapper) is a library that maps database tables to objects in code, so developers query and persist data using their language rather than raw SQL.
Most ORMs ship a migration generator, so schema changes in a pipeline are produced from model definitions and applied by the same tool.
Related guides
N+1 Query - CI/CD Glossary DefinitionN+1 Query: An N+1 query problem is a performance issue where code runs one query to fetch a list, then one ad…
Database Migration - CI/CD Glossary DefinitionDatabase Migration: A database migration is a versioned, ordered change to a database schema or data, applied…