Adding a new column can break queries, slow performance, and cause hidden bugs in production. Treat it as a migration, not a tweak. The schema defines truth. When you update it, every service that reads or writes must know the new rules.
Start with reason. Ask why this column must exist. Avoid columns that duplicate existing data or violate normalization. Define the type precisely. Choose constraints—NOT NULL, defaults, unique keys—before deployment.
Plan the rollout. For relational databases, write a migration script that adds the new column without locking large tables for long periods. In PostgreSQL, adding a nullable column with a default can rewrite the table; avoid default values on large datasets at this stage. For MySQL, consider online schema change tools.
Update queries and indices. A new column without the right index can cripple performance if it enters join conditions or filters. Review execution plans before and after.