The table was failing. Queries slowed. Reports broke. The fix was clear: add a new column.
A new column changes the shape of your data. In SQL, it means altering the schema without losing the rows you depend on. In NoSQL, it can be as simple as updating documents with an added field. Either way, it is a structural decision. It affects reads, writes, indexes, and constraints.
To add a new column in SQL, use ALTER TABLE with a column name, type, and optional default value. Think about nullability before you commit. A NULL column can save you from a full table rewrite, but it can also slow index scans. If you need fast lookups, define an index immediately after adding the column.
When adding a new column at scale, downtime matters. Large tables can lock writes during schema changes. Use online DDL if available. MySQL has ALGORITHM=INPLACE. PostgreSQL can add a column instantly if there is no default. For distributed systems, stage the change: introduce the column, backfill in batches, then deploy the code that writes to it.