Adding a new column should be simple. In reality, it is often where systems break. When the database is large, every schema change carries risk. Write locks can halt traffic. Replication lag can spike. Queries can break if default values are wrong.
The core steps are direct: decide the column name, define its type, set nullability, pick defaults. Test the migration in staging with production-like data. Measure how long the ALTER TABLE will run. If downtime is unacceptable, split the change into phases—first add the column as nullable, then backfill data in small batches, then alter constraints.
Indexes are a separate risk. Adding them at the same time as the new column can multiply lock time. Isolate those steps. Keep each migration small and reversible.