A new column changes the schema. It expands what your system can store and how it can query. Whether you are working with SQL, NoSQL, or columnar data stores, you have one central task: define the new field with absolute precision. Get the name right. Get the type right. Decide on nullability before the first row gets written.
In relational databases, creating a new column is simple:
ALTER TABLE users ADD COLUMN last_login TIMESTAMP;
This command runs instantly on smaller datasets. On massive tables, it can lock writes or even reads. Plan for zero-downtime migrations. Shadow writes, copy data in batches, and test every query path. Avoid default values that force a full table rewrite unless required by the application logic.
For document-based stores, a new column is virtual. Add the key to future documents, backfill old ones only if needed. Most query engines will handle missing fields as null. Index only if the read patterns demand it; every index costs memory and write performance.