Hacker News new | ask | show | jobs
by ht85 2426 days ago
Generally a good strategy for dropping columns or tables is to rename them instead (e.g. `table_deprecated`).

If things look stable after whatever time you deem necessary, you can write a second migration to actually drop them.

If you run into issues, your down migration simply undoes the rename.