Josh,
> This creates an index with the name position_and_produkt_id_uniq: > add_index :bilder, ...:name => :position_and_produkt_id_uniq > This should remove the same one: > remove_index :bilder, :position_and_produkt_id_uniq
You forgot the ':name => ' part :
remove_index :bilder, :name => 'position_and_produkt_id_uniq'
Alain