A new column in a database is more than a field. It is a shift in the shape of your data. When you add it, you change storage, indexes, and queries. In SQL, the ALTER TABLE statement is the tool. A simple example:
ALTER TABLE users
ADD COLUMN last_login TIMESTAMP;
This runs fast on empty tables. On large, active tables, it can block writes or consume resources. The safest approach is to test on a staging copy. Measure the impact. Schedule deploys to avoid peak load.
When adding a new column, define the correct type and nullability from the start. Avoid changing types later. For indexed columns, know the cost of rebuilding indexes. In PostgreSQL, use ADD COLUMN without a default to speed up the operation. Then backfill in small batches.