The database did not care about your timelines, your migration plans, or your release windows. It would either accept the change cleanly or grind your service to a halt.
A new column sounds small, but it is the sharp edge where schema design, data integrity, and uptime collide. Whether you are adding a boolean flag, a text field, or a nullable foreign key, each choice influences performance and future architecture.
Before you run ALTER TABLE, stop. Assess the size of the table. Millions of rows? The operation could lock writes for minutes. Billions? You might bring your API down if you are not careful. Use an online schema change tool or a zero-downtime migration strategy. Consider batched background jobs that backfill default values before making the column NOT NULL.