If I have two migrations, mig1 and mig2, I run rake db:migrate, then I go back to mig1 and change the default value of a column, will this change be reflected when I run rake db:migrate again? Or do I have to make a new migration just for that column to make the change?
|
feedback
|
|
You should either make a new migration or use the rake The current version of your schema is tracked and applied to migrations, so running rake db:migrate will not rerun old migrations. It is for this reason that you are able to use the You can then edit the migration and re-migrate. | |||
|
feedback
|
|
You can redo a given VERSION by running the following:
| |||
|
feedback
|