summaryrefslogtreecommitdiff
path: root/db/migrate/20200304023851_add_sprint_to_merge_requests.rb
blob: e294abe66cdbb9037fb22814e6ae816ed6c03e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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