A new column sounds simple, but it can break production when handled carelessly. Schema changes in relational databases are not just about adding a field. The moment you add a new column, you affect queries, indexes, constraints, and the application code that depends on them.
Before creating a new column, define its purpose and data type precisely. Use the smallest possible type for storage efficiency. Decide whether it should allow NULL values or have a default value. Adding a NOT NULL column without a default will block inserts until the table is updated for all existing rows.
Run the change in a transaction when the database supports it. For large tables, consider adding the new column with a default in one migration and backfilling data in a separate, batched step. This avoids long locks and write amplification that can take down services.