Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to remove/delete a migration file. How would I go about doing that? I now there are similar questions on here but as an update, is there a better way than doing script/destroy?

Also, should I do a db:reset or db:drop if I remove/delete a migration?

Thanks in advance.

share|improve this question
   
Do you mean deleting the migration file ... :D – Rohit Oct 6 '10 at 13:27
Thanks @Rohit, thats exactly what I meant! – alvincrespo Oct 6 '10 at 16:30

4 Answers

up vote 41 down vote accepted

I usually:

  1. Perform a rake db:migrate VERSION=XXX on all environments, to the version before the one I want to delete.
  2. Delete the migration file manually.
  3. If there are pending migrations (i.e., the migration I removed was not the last one), I just perform a new rake db:migrate again.

If your application is already on production or staging, it's safer to just write another migration that destroys your table or columns.

Another great reference for migrations is: http://guides.rubyonrails.org/migrations.html

share|improve this answer
2  
Would deleting the migration and then running a db:migrate wipe out the table that was created? – alvincrespo Oct 7 '10 at 17:35
1  
No, since Rails would not know how to delete it. It needs to call the self.down method defined on your migration to "downgrade" your database. – Fábio Batista Oct 7 '10 at 18:10
11  
If you've already deleted the file, without realizing rails will not let go that easily, rake db:migrate:status will show you the ID of the missing file, which you can use to recreate it. Once it's back, you can follow this answer's advice to victory. – Jordan Feldstein Sep 19 '11 at 0:15
1  
@JordanFeldstein, thank you. db:migrate:status is a life saver! – dee Oct 27 '12 at 16:36
1  
@Lucas, once the migration file is removed, it cannot be reversed anymore. That's why you must revert it on all environments it already ran (production, development, testing, staging, etc) before deleting its file. That's also why I wrote that it's safer to just create another migration to revert that old one, once it's already ran on production. – Fábio Batista Apr 7 at 0:08
show 4 more comments

we can use

$ rails d migration table_name  

which will delete the migration

share|improve this answer
$ rails d migration SameMigrationNameAsUsedToGenerate
share|improve this answer

Sometimes I found myself deleting the migration file and then deleting the corresponding entry on the table schema_migrations from the database. Not pretty but it works.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.