I have a dev Ruby on Rails database full of data. I want to delete everything and rebuild the database. I'm thinking of using something like:
rake db:recreate
Is this possible?
|
I have a dev Ruby on Rails database full of data. I want to delete everything and rebuild the database. I'm thinking of using something like:
Is this possible? |
||||
|
|
|
I know two ways to do this:
This will reset your database and reload your current schema with all.
This will destroy your db and then create it and then migrate your current schema. All data will be lost in both scenarios. |
|||||||||||||||||||||
|
|
I use the following one liner in Terminal.
I put this as a shell alias and named it |
|||||||||||
|
|
Depending on what you're wanting, you can use…
…to build the database from scratch from
…to build the database from scratch from your |
|||||||||||||
|
|
you can use this commande line:
|
||||
|
|
|
I've today made quite a few changes to my rails schema. I realised I needed an additional two models in a hierarchy and some others to be deleted. There were many little changes required to the models and controllers. I added the two new models and created them, using:
Then I edited the schema.rb file. I manually removed the old models that were no longer required, changed the foreign key field as required and just reordered it a bit to make it clearer to me. I deleted all the migrations, and then re-ran the build via:
It worked perfectly. All the data has to be reloaded, of course. Rails realised the migrations had been deleted and reset the high-water mark:
|
|||
|
|