I have Migrator.net implemented in my project and I am removing a table from the current schema. My Up()
simply contains Database.RemoveTable("FooTable")
. But now I'm at a bit of a loss as to what I'm supposed to do for my Down()
. Do I need to manually parse all past migrations for modifications on FooTable
? Is there a way to run all previous migrations on FooTable in Down()
?