debian-mirror-gitlab/db/migrate/20200304023851_add_sprint_to_merge_requests.rb
2020-05-24 23:13:21 +05:30

21 lines
441 B
Ruby

# frozen_string_literal: true
class AddSprintToMergeRequests < ActiveRecord::Migration[6.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
with_lock_retries do
# index will be added in another migration with `add_concurrent_index`
add_column :merge_requests, :sprint_id, :bigint
end
end
def down
with_lock_retries do
remove_column :merge_requests, :sprint_id
end
end
end