Gab-Social/db/migrate/20200707212951_add_index_to_media_attachment_type.rb

8 lines
184 B
Ruby
Raw Normal View History

class AddIndexToMediaAttachmentType < ActiveRecord::Migration[5.2]
disable_ddl_transaction!
def change
add_index :media_attachments, :type, algorithm: :concurrently
end
end