This is one of the most common changes in any database lifecycle, yet it is also one of the most dangerous if done without precision. A new column alters your schema. It can break queries, migrations, and integrations if not planned and executed with discipline.
First, define the purpose of the new column. Name it clearly to reflect its single responsibility. Avoid vague labels. Decide whether it can be null, what data type it requires, and whether it needs a default value to prevent issues in existing rows.
Second, version your schema changes. Never run ALTER TABLE directly on production without rehearsing in staging. Large tables can lock up, cause downtime, or trigger replication lag. For zero-downtime migrations, create the new column without heavy constraints, backfill data in controlled batches, and then add indexes or constraints later.