Adding a new column should be fast, predictable, and safe. Yet in production systems, it can become a risk. Schema changes impact queries, indexes, replication lag, and application code. A poorly planned new column can lock tables, slow deployments, or break downstream services.
Plan the change. Evaluate which tables are affected, how large they are, and which queries will touch the new column. Check database engine documentation for the exact behavior of ALTER TABLE ... ADD COLUMN. In some systems, adding a nullable column with a default is near-instant. In others, it rewrites the entire table.
Decouple schema migrations from code changes. Deploy the new column first without heavy defaults or constraints. Backfill data in small batches to avoid throttling the database. Then roll out the application updates that read and write this column. If you need constraints or indexes, add them after the data is populated.