drizzle
drizzle

Reputation: 520

Is rake db:migrate the correct command to re-sync schema.rb with your database schema?

I ran "rake db:migrate" to re-sync schema.db with my database schema. But it failed, saying that one of my tables already exists. I think it was trying to re-create the table. If you just want to get schema.rb updated to reflected any changes you made in the database independently of Rails, what command should you use if not "rake db:migrate"? And what's the best source of documentation on this type of thing?

Upvotes: 18

Views: 32180

Answers (7)

Thomas Klemm
Thomas Klemm

Reputation: 10856

Use rake db:schema:dump.

$ rake -T | grep schema
rake db:schema:dump # Create a db/schema.rb file that is portable
                    #  against any database supported by ActiveRecord

rake db:schema:dump re-creates the db/schema.rb file without running any of your migrations again, or dropping any tables (which implicates losing the data in those tables), so it's the least invasive way you can try first.

Upvotes: 2

crmoreira
crmoreira

Reputation: 198

Try

RAILS_ENV=development rake db:drop

before

RAILS_ENV=development rake db:migrate

and be happy!

Making sure that you run it on your test or development environment since this will drop the database/tables

Upvotes: 19

Mike
Mike

Reputation: 9842

rake db:migrate:reset will drop all your tables, run all the migrations and create a new schema.rb file.

Upvotes: 6

hoff2
hoff2

Reputation: 794

I've found that occasionally, when things get a little weird, you'll find yourself in a situation where Rails will want to run a migration that it ought rightly to be considering already done (the table already exists, etc). You can mark a migration as done by finding its number (the number part at the beginning of the filename), going into mysql and issuing a query like so:

insert into schema_migrations values('20090521153438');

(or whatever the number of your migration is)

Or if it's a plugin migration being run using Desert's migrate_plugin:

insert into plugin_schema_migrations values('my_plugin', '005');

Upvotes: 16

scottd
scottd

Reputation: 7474

"rake db:migrate" will try and run all the outstanding migrations for your project. If you just want to dump the schema do a "rake db:schema:dump".
But I think you have a problem where it says that the table already exists. One of your migrations is failing because the table it is trying to add already exists in your db. Did you create one by hand? Did you down a migration, but not have a down written for it? You will need to fix this before you can write future migrations. If it is just a mistake, and the table is there and correct and you want to ignore this. My recommendation is to hack around it by commenting out the create table in the failing migration. Then run "rake db:migrate". Then but the create table back. This will update your schema version.
Make sure you write proper downs on all migrations.

Upvotes: 20

Maximiliano Guzman
Maximiliano Guzman

Reputation: 2035

answering your last question regarding documentation:

Upvotes: 1

pts
pts

Reputation: 87281

Try rake db:schema:dump or rake db:migrate:redo.

Upvotes: 2

Related Questions