summaryrefslogtreecommitdiff
path: root/db/migrate/20200527092027_add_link_type_to_release_links.rb
blob: 5088775f6658c2cc1bfead67de528b6347629d3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

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

  DOWNTIME = false

  def up
    with_lock_retries do
      add_column :release_links, :link_type, :integer, limit: 2, default: 0
    end
  end

  def down
    with_lock_retries do
      remove_column :release_links, :link_type
    end
  end
end