Let's say I create a rake task to add a column to a table. After I run that rake task, can I delete the rake file while keeping the changes to the database?
I understand that a migration could accomplish this same type of task, but if I want to cut down on running migrations for such simple database changes, is a rake task acceptable?
Apologies if this is a rookie question, I did some searching and could not find a suitable answer.