vote up 0 vote down star

I have a Rails application with numbered migrations 001_..., 002_..., etc.

I have several plugins A,B,C with their own migrations 001_.., 002_... etc. How to remove the particular plugin B and clean the schema (making B plugin migrations down)

flag

1 Answer

vote up 1 vote down

if they were migrated in order A B C then migrate back to A state remove Plugin B and Plugin B's migration then migrate to current

should do the trick

link|flag
Any tips on exact steps to do? Thanks. – msorc Jul 15 at 6:25
lets say you have migrations 001 002 003 for plugins A B C respectively and you want to remove plugin A rake db:migrate:down VERSION=001 go into vender/plugins and delete plugin A directory that should do it – ErsatzRyan Jul 15 at 12:22

Your Answer

Get an OpenID
or

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