vote up 0 vote down star

Running rake db:migrate followed by rake test:units yields the following:

rake test:functionals
(in /projects/my_project)
rake aborted!
SQLite3::SQLException: index unique_schema_migrations already exists: CREATE UNIQUE INDEX "unique_schema_migrations" ON "ts_schema_migrations" ("version")

The relevant part of db/schema.rb is as follows:

create_table "ts_schema_migrations", :id => false, :force => true do |t|
  t.string "version", :null => false
end

add_index "ts_schema_migrations", ["version"], :name => "unique_schema_migrations", :unique => true

I'm not manually changing this index anywhere, and I'm using Rails' default SQLite3 adapter with a brand new database. (That is, running rm db/*sqlite3 before rake db:migrate doesn't help.)

Is the test:units task perhaps trying to re-load the schema? If so, why? Shouldn't it recognize the schema is already up to date?

flag

61% accept rate
There are definitely no other index declarations for the schema_migrations table in the schema.rb. The bug doesn't happen on MySQL, interestingly enough, though. – James A. Rosen Oct 14 '08 at 17:12
It may also have something to do with my using table_name_prefix. When doing a rake db:schema:load, I get doubly-prefixed tables. – James A. Rosen Oct 14 '08 at 17:12

2 Answers

vote up 0 vote down

Try to search if your schema.rb file does not contain other declarations that create an index with the same name: unique_schema_migrations

link|flag
vote up 1 vote down

In your database.yml file are your environments setup up to connect to different databases for Development and Test?

IE:

development:
  adapter: sqlite3
  database: db/dev.sqlite3
  timeout: 5000

test:
  adapter: sqlite3
  database: db/test.sqlite3
  timeout: 5000
link|flag

Your Answer

Get an OpenID
or

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