When adding an index to a table, is it as simple as writing a migration with:

add_index(:column_name)

And for the down method

remove_index(:column_name)

Are there any surprises I need to be aware of?

Working in Rails 3.07, Postgres. On Heroku.

Thanks.

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Why do I get the feeling this is a trick question?

Yes, it's that simple. No, there are no surprises, although very few people are ever glad of having made such a promise. :-)

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.