summaryrefslogtreecommitdiff
path: root/db/migrate/20210223053451_add_branch_name_to_dast_profile.rb
blob: 311e809103f19e3509ca6c8ef3afdc4636ada96b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

class AddBranchNameToDastProfile < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    with_lock_retries do
      add_column :dast_profiles, :branch_name, :text
    end

    add_text_limit :dast_profiles, :branch_name, 255
  end

  def down
    with_lock_retries do
      remove_column :dast_profiles, :branch_name
    end
  end
end