Adding a new column in production is simple in theory. In practice, it can be a point of failure if done without a plan. Schema changes touch live data. Every query, every index, and every integration depends on the shape of your tables.
To add a new column safely, start with clarity on type, default values, and nullability. Define whether the column must be backfilled at creation or can remain empty until later. If the table is large, understand the cost of rewriting data pages. On certain databases, adding a non-null column with a default can trigger a full table rewrite, locking operations and spiking CPU and I/O.
For PostgreSQL, adding a nullable column with no default is fast; adding one with a default and NOT NULL requires a rewrite. MySQL and MariaDB have similar behavior, but engine-specific optimizations can change execution time. In cloud environments, schema alterations consume resources that may hit autoscaling thresholds. Monitor them.