Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

5 Answers

up vote 219 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.

share|improve this answer
7  
should rake drop be rake db:drop ? – plowman Nov 16 '10 at 7:47
5  
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 '12 at 4:06
59  
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 '12 at 16:56
show 4 more comments

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

share|improve this answer
5  
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
@AnApprentice You can run db:reset, which is just a Google (or check on the Guides) away. My comment wasn't to advise against using that, but to avoid using db:migrate when what you really want is db:schema:load. – coreyward Dec 10 '12 at 23:54
By the way, @TK, you really don't need to run all of these as separate processes dependent on the exit status of the last. Instead, just pass all desired tasks to rake, like so: rake db:drop db:create db:schema:load. – coreyward Dec 10 '12 at 23:55

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.

share|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
3  
+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
I read in The Rails 3 Way that loading the schema is the way to go, as opposed to running all the migrations. I don't remember exactly what their reasoning was but it seems to make sense. If the end result is the same either way, it seems simpler and less error-prone just to load the database from the schema than to run a bunch of migrations. – Jason Swett Aug 3 '12 at 19:48
The reasoning is that migrations are meant to migrate data, and become increasingly brittle over time as your models change. You can (and should) bake in bare-minimum scoped models into your migrations whenever feasible to ensure they run, but this just doesn't scale well and is much less efficient than just building the database from what the application knows is the final point. Why rely on migrations to create a database that looks like your schema when you can just build from the blueprint itself? – coreyward Aug 3 '12 at 19:57
show 1 more comment

you can use this commande line:

rake db:drop db:create db:migrate db:seed db:test:clone
share|improve this answer

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:

rake db:migrate

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:

rake db:reset

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:

-- assume_migrated_upto_version(20121026094813, ["/Users/sean/rails/f4/db/migrate"])
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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