Adding a new column in production is simple on paper, harder in reality. Databases handle ALTER TABLE differently, and each system has its own quirks. Some operations lock the table. Others rebuild it in the background. On large datasets, that difference means seconds vs. hours.
Before you add a new column, identify the constraints. Is it nullable? Does it have a default value? Will it require backfilling data? A NOT NULL column without a default will reject inserts until the data exists. On active systems, that can block writes and cause downtime. Plan the shape and type of the column to match both the query patterns and the indexing strategy.
Consider index impact before release. Adding an indexed new column can slow inserts and updates if done blindly. Staged rollouts work best. First, add the column without constraints or indexes. Then backfill in small batches. Finally, apply constraints and indexes once data is ready.