The speed and safety of that change decide whether you ship fast or stall in testing for weeks.
When you add a new column, you are adding a new dimension to your system. It might be a boolean to toggle a feature, a timestamp to track events, or a JSON field enabling flexible storage. The design matters. The default matters. Null vs. non-null matters. A poorly planned column will break queries, degrade performance, and create drift between environments.
Schema migrations in production demand precision. The first question is where the new column belongs in the logical model. The second is how the database engine will store it and index it. The third is how to roll out the change without downtime. In PostgreSQL, for example, adding a column with a default on a large table can lock writes for longer than you expect. In MySQL or MariaDB, an ALTER TABLE may rewrite the whole table. Even in modern, distributed databases, schema changes require careful sequencing.