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?

link|improve this question

70% accept rate
feedback

3 Answers

up vote 45 down vote accepted

I know two ways to do this:

rake db:reset
rake db:migrate

This will reset your database and reload your current schema with all.

rake db:drop
rake db:create
rake db:migrate

This will destroy your db and then create it and then migrate your current schema.

All data will be lost in both scenarios.

link|improve this answer
6  
should rake drop be rake db:drop ? – plowman Nov 16 '10 at 7:47
2  
It seems rake db:reset also runs all migrations (at least on Rails 3), so that should be all that is needed, right? – plindberg Mar 22 '11 at 13:37
2  
Should have edited your answer. – Phelios Jun 7 '11 at 2:55
1  
I know that for Tracks GTD app db:migrate didn't work. I had to do db:reset when moving from Sqlite3 to Postgres. – labyrinth Mar 29 at 4:06
1  
There's no need to run rake for each command; they stack: rake db:drop db:create db:migrate. This is much faster since the environment doesn't get reloaded over and over. – coreyward Mar 30 at 16:56
show 1 more comment
feedback

I use the following one liner in Terminal.

rake db:drop && rake db:create && rake db:migrate && rake db:schema:dump && rake db:test:prepare

I put this as a shell alias and named it remigrate

link|improve this answer
2  
That's going to run all of your migrations one after the other, which isn't scalable and is error-prone. Also, I'm pretty sure db:migrate updates your schema.rb, so your schema:dump isn't doing anything useful. – coreyward Nov 7 '10 at 1:36
so how does one empty the database? in development... clear it all out. – AnApprentice Nov 7 '10 at 1:39
feedback

Depending on what you're wanting, you can use…

rake db:create

…to build the database from scratch from config/database.yml, or…

rake db:schema:load

…to build the database from scratch from your schema.rb file.

link|improve this answer
that just tells you "already exists" – AnApprentice Nov 7 '10 at 1:32
You've got to drop the database first…or you can just delete the tables if you prefer. – coreyward Nov 7 '10 at 1:34
+1 for schema load. sometimes migrations get messed up, but the schema should be what is kept intact. – Danny Oct 28 '11 at 19:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.