debian-mirror-gitlab/db/migrate/20170703102400_add_stage_id_foreign_key_to_builds.rb

28 lines
711 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class AddStageIdForeignKeyToBuilds < ActiveRecord::Migration[4.2]
2017-09-10 17:25:29 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
unless index_exists?(:ci_builds, :stage_id)
add_concurrent_index(:ci_builds, :stage_id)
end
2018-05-09 12:01:36 +05:30
unless foreign_key_exists?(:ci_builds, :ci_stages, column: :stage_id)
2017-09-10 17:25:29 +05:30
add_concurrent_foreign_key(:ci_builds, :ci_stages, column: :stage_id, on_delete: :cascade)
end
end
def down
2018-05-09 12:01:36 +05:30
if foreign_key_exists?(:ci_builds, column: :stage_id)
2017-09-10 17:25:29 +05:30
remove_foreign_key(:ci_builds, column: :stage_id)
end
if index_exists?(:ci_builds, :stage_id)
remove_concurrent_index(:ci_builds, :stage_id)
end
end
end