debian-mirror-gitlab/db/post_migrate/20170526185901_remove_stage_id_index_from_builds.rb
2017-09-10 17:25:29 +05:30

19 lines
364 B
Ruby

class RemoveStageIdIndexFromBuilds < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
if index_exists?(:ci_builds, :stage_id)
remove_foreign_key(:ci_builds, column: :stage_id)
remove_concurrent_index(:ci_builds, :stage_id)
end
end
def down
# noop
end
end