Adding a new column to a relational database starts with definition. Use ALTER TABLE to create it. Specify the type with care—VARCHAR, INTEGER, BOOLEAN—because migrations are cheap, but wrong types are expensive. Decide if the new column is NULL-able. That choice defines how existing rows behave. Default values can ease adoption, but watch for hidden costs in storage and query planning.
After definition comes indexing. Index only if you will filter on the new column in queries. An unnecessary index increases write times and consumes memory. A missing index leaves searches slow. Measure. Test. Adjust.
Check how the new column interacts with existing queries. Joins may need changes. Views and stored procedures may break. ORMs might require mapping updates. Always run the migration in staging first and benchmark common workloads.