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()?
| |||
|
feedback
|
|
What about the data? If there were 50,000 rows, recreating an empty table doesn't rollback to the previous state. To enable database downgrades with data you need to:
| |||
|
feedback
|
|
The idea of in your case you would have to recreate the Table in your | |||
feedback
|
Down()as opposed to checking all previous migrations by hand. I'd still be interested in seeing if anyone has a more elegant solution to this though. Perhaps I should start looking to patch Migrator.net itself? – jcm Jan 22 '10 at 19:26