Adding a new column is one of the most frequent schema changes. The operation looks trivial, but in production systems, it can carry real cost. The size of the table, the presence of indexes, the storage engine, and the default values all affect how fast the new column is created and how the database behaves during the change.
A new column can be nullable, non-nullable with a default, or computed. Each type changes the execution path. On large datasets, adding a non-nullable column without a default can lock the table and block writes. With the wrong configuration, this turns a minor deploy into an outage.
Online schema changes reduce downtime for adding a column. Many relational databases now support variants of this: ALTER TABLE ... ADD COLUMN can run without copying the entire table, depending on version and flags. Tools like pt-online-schema-change or native ONLINE modifiers in MySQL and PostgreSQL logical replication offer safer, faster migrations.