Skip to content
Snippets Groups Projects
20161018123459_add_index_to_collection.rb 230 B
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