2018-01-29 12:57:34 -05:00
|
|
|
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
|
|
|
|
# for more information on how to write migrations for GitLab.
|
|
|
|
|
2018-11-13 02:27:31 -05:00
|
|
|
class AddUploaderIndexToUploads < ActiveRecord::Migration[4.2]
|
2018-01-29 12:57:34 -05:00
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
2018-01-30 12:38:15 -05:00
|
|
|
remove_concurrent_index :uploads, :path
|
2018-01-29 12:57:34 -05:00
|
|
|
add_concurrent_index :uploads, [:uploader, :path], using: :btree
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
2018-01-30 12:38:15 -05:00
|
|
|
remove_concurrent_index :uploads, [:uploader, :path]
|
2018-01-29 12:57:34 -05:00
|
|
|
add_concurrent_index :uploads, :path, using: :btree
|
|
|
|
end
|
|
|
|
end
|