gitlab-org--gitlab-foss/db/post_migrate/20170526185901_remove_stage...

19 lines
369 B
Ruby
Raw Normal View History

class RemoveStageIdIndexFromBuilds < ActiveRecord::Migration[4.2]
2017-06-21 08:32:45 +00:00
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)
2017-06-21 08:32:45 +00:00
remove_concurrent_index(:ci_builds, :stage_id)
end
end
def down
# noop
end
end