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

I am trying to add an unique index that gets created from the foreign keys of 4 associated tables (users, universities, subject_names, subject_types).

add_index :studies, ["user_id", "university_id", \
          "subject_name_id", "subject_type_id"], 
          :unique => true

MySQL's limitation for the index name causes the migration to stop. Here is the error message.

Index name 'index_studies_on_user_id_and_university_id_and_subject_\
           name_id_and_subject_type_id' on table 'studies' is too long; \
           the limit is 64 characters

How can I handle this? Can I use an alias?

share|improve this question
Also an issue with Postgresql – ootoovak Feb 12 at 2:44

1 Answer

up vote 80 down vote accepted
add_index :studies, ["user_id", "university_id", \
          "subject_name_id", "subject_type_id"], 
          :unique => true, :name => 'my_index'

more info http://apidock.com/rails/ActiveRecord/ConnectionAdapters/SchemaStatements/add_index

share|improve this answer
1  
Worked well for me. (Rails 3.2.x) – Sam Figueroa Feb 25 at 13:35

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.