Adding a new column is one of the most common schema changes. Done wrong, it breaks production or blocks deploys. Done right, it adds capability without downtime. The key is to plan the migration, apply it in small steps, and verify before release.
Start by defining the new column with the correct data type and defaults. Avoid nullable fields that create ambiguity unless they are intentional. For large datasets, add the column in a way that does not lock the table. Break changes into phases: add the column, backfill data, update application code, then enforce constraints.
In SQL, use ALTER TABLE for small, fast-changing systems. On systems with high traffic, use migration tools that batch changes or apply them in a background job. Test the DDL on a staging environment with production-like data sizes to uncover performance issues.