This is more of a best practice question. I've been using rails generate migration to add/remove/change columns from my table. Now my migration folder is filled with these migration files that I think makes things really messy. What would be your advice on keeping my migration folder groomed? (Are there better and more efficient ways to make changes to tables?) Can I delete migration files after they have been migrated to the db?
Thanks for your help!