I have a dev database full of data.
I want to delete everything and rebuild the database, something like:
rake db:recreate
Is this possible?
|
I have a dev database full of data. I want to delete everything and rebuild the database, something like:
Is this possible?
| ||||
|
feedback
|
|
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. | |||||||||||||||||||||
feedback
|
|
I use the following one liner in Terminal.
I put this as a shell alias and named it | |||||||
feedback
|
|
Depending on what you're wanting, you can use…
…to build the database from scratch from
…to build the database from scratch from your | |||||||
feedback
|