Newer
Older
class AddIndexToCollection < ActiveRecord::Migration[5.0]
def change
add_index :collection_items, [:collection_id,:collectionable_id, :collectionable_type], unique: true, name: 'collection_item_and_collectionable'
end
end