The new column was live before the tests finished running. Migrations had cleared. Data had shifted clean. The schema had changed without breaking a single request.
Adding a new column should be fast and predictable. In most systems, it isn’t. Locks appear. Queries crawl. Deploys stall. The cost of change rises with every release. The fix is to treat schema changes as first-class work, with the same discipline you give to code.
A new column impacts everything that touches the table. Write migrations that avoid full table rewrites. Use ADD COLUMN with default values set in the application layer if your database supports it. Apply changes in non-blocking steps: create the column, backfill in chunks, then switch reads and writes after the data is ready. This pattern keeps production live and latency steady.