about summary refs log tree commit diff
path: root/db/migrate/20170601210557_add_index_on_media_attachments_account_id.rb
blob: c51ab28e5231c2c1dc4cbbc4d6eedc1aed084c66 (plain) (blame)
1
2
3
4
5
class AddIndexOnMediaAttachmentsAccountId < ActiveRecord::Migration[5.1]
  def change
    add_index :media_attachments, :account_id
  end
end