Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200304023245_add_sprint_to_issues.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8bc5258ffda89636579cef764d2e18d33572fdc (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 AddSprintToIssues < 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 :issues, :sprint_id, :bigint
    end
  end

  def down
    with_lock_retries do
      remove_column :issues, :sprint_id
    end
  end
end