A new column is more than a field—it is a decision. It alters queries, indexes, writes, and reads. It affects API contracts, exports, and every downstream workflow depending on that table. When you create it, you commit to storing, retrieving, and maintaining its values.
In SQL, a new column can be added with ALTER TABLE. In NoSQL, schema changes require updates to the application layer, migration jobs, or transformations at write time. Both paths carry risk: breaking joins, corrupting reports, mismatched types, or default values that fail silently.
Performance is a factor. Adding a new column without indexing can cause slower WHERE or ORDER BY clauses. Adding indexes increases read speed but may slow writes. Choosing data types carefully matters: integers vs. strings, nullable vs. not null, constrained vs. free-form.