The dataset needs one more field. You add a new column.
A new column changes the shape of your data. It defines what your queries can do. It sets the rules for how your application stores and retrieves information. In relational databases, a new column means altering the schema. In NoSQL, it means extending the document or record structure. Either way, it is not cosmetic. It is structural.
When you add a new column in SQL, you use ALTER TABLE. You choose the data type. You set constraints: NOT NULL, DEFAULT, UNIQUE. These choices decide the performance and reliability of your system. A poorly chosen type can slow queries. A wrong default can break logic.
A new column in production requires planning. First, check dependencies. Application code must handle the extra field. APIs must respond with it. Migrations should run without locking tables for too long. For large datasets, use online schema change tools or phased rollouts to avoid downtime.