The fix was simple. The delay was not.
Adding a new column should be direct: define, migrate, and validate. In practice, it often exposes every weak link in a team’s data layer. Schema drift, untested migrations, and inconsistent environments turn a small change into a risky operation.
A clean workflow for adding a new column starts with strict definition. Name it precisely. Choose the smallest data type that supports the required values. Default values should be explicit to avoid null-related bugs. When possible, make the column nullable during initial rollout to prevent blocking writes from incomplete backfills.
Run the migration in a controlled environment first. Measure how long it takes to alter the table. For large datasets, consider breaking the schema change into steps: add the column, backfill in batches, then enforce constraints. This reduces lock contention and limits the blast radius of failure.