I would like to make a column unique in Rails migration script. What is the best way to do it? Also is there a way to index a column in table?

I would like to enforce unique columns in database as opposed to just using :validate_uniqueness_of

Thanks,

Tam

link|improve this question

feedback

2 Answers

up vote 64 down vote accepted

The short answer:

add_index :table_name, :column_name, :unique => true

To index multiple columns together, you pass an array of column names instead of a single column name,

add_index :table_name, [:column_name_a, :column_name_b]

For finer grained control, there's a "execute" method that executes straight SQL.

That's it!

If you are doing this as a replacement for regular old model validations, just check to see how it works. I'm not sure the error reporting to the user will be as nice. You can always do both.

link|improve this answer
4  
+1 for suggesting continuing to use the validates_uniqueness_of. The error handling is much cleaner using this method for the cost of a single indexed query I would suggest he does both – Steve Weet Sep 19 '09 at 22:08
I tried that it doesn't seem to work! I could insert two record with the column_name that I defined as unique! I'm using Rails 2.3.4 and MySql any ideas? – Tam Sep 20 '09 at 4:57
I used you second suggestion by using execute: execute "ALTER TABLE users ADD UNIQUE(email)" and it works! not sure why the first one didn't would be interested in knowing – Tam Sep 20 '09 at 5:19
I found that the composite index alone didn't present any nice errors, therefore validated uniqueness as well. Cheers! – Michael de Silva Jul 15 '11 at 12:21
@Tam - I found this comment about the same problem on apidock. Looks like you just need to add one more parameter to the method :name => index_name apidock.com/rails/ActiveRecord/ConnectionAdapters/… – Jimbo Mar 29 at 21:32
feedback

For solve problem of adding unique index after creating table you can use 1) rake:db migrate VERSION=0 2) rake:db migrate instead of rake db:setup

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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