20170601210557_add_index_on_media_attachments_account_id.rb 173 B

1234567
  1. # frozen_string_literal: true
  2. class AddIndexOnMediaAttachmentsAccountId < ActiveRecord::Migration[5.1]
  3. def change
  4. add_index :media_attachments, :account_id
  5. end
  6. end