A new column changes the shape of your data. It shifts queries, breaks assumptions, and can ripple into every service that touches the database. You cannot treat it like a harmless tweak. Whether you use PostgreSQL, MySQL, or a distributed SQL engine, adding columns requires control, testing, and a migration plan.
In PostgreSQL, ALTER TABLE ADD COLUMN is fast for nullable fields without defaults, but can be costly when backfilling. MySQL can lock tables depending on engine and version. Distributed systems can magnify delays into outages. The safest pattern is schema migration in small, reversible steps. Add the new column as nullable. Deploy application code that writes to both old and new columns. Backfill asynchronously in batches. Then flip reads to the new column and drop the old one if needed.
Automation matters. Use migration tooling with transactional guarantees when possible. Keep migrations in source control. Test against production-like data sizes. Monitor query plans before and after the change. Schema drift is expensive to fix once deployed at scale.