Adding a new column can be simple or it can take down a production system. The difference is in how you plan it. Start by defining the column name, data type, and default value. Think about NULL constraints and whether the change will trigger a full table rewrite.
In relational databases like PostgreSQL and MySQL, ALTER TABLE ADD COLUMN is the starting point. In large datasets, this command can hold locks and block reads or writes. Minimize downtime by running schema changes in off-peak hours or by using online schema change tools. For distributed systems, update each shard or replica in sequence, never all at once.
A new column in a live application must be introduced in stages. First, deploy the schema change without touching existing queries. Second, update the application code to populate the column. Third, backfill historical data, ideally in small batches to avoid load spikes. Monitor logs and query performance after each stage.