summaryrefslogtreecommitdiff
path: root/db/migrate/20210608103230_add_issue_id_to_test_report.rb
blob: f4e723d0af8b2a6138e313b23144093295a86909 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class AddIssueIdToTestReport < ActiveRecord::Migration[6.1]
  include Gitlab::Database::MigrationHelpers

  def up
    with_lock_retries do
      add_column :requirements_management_test_reports, :issue_id, :bigint, null: true
    end
  end

  def down
    with_lock_retries do
      remove_column :requirements_management_test_reports, :issue_id
    end
  end
end