summaryrefslogtreecommitdiff
path: root/db/migrate/20230124122143_add_deploy_key_id_to_create_access_levels.rb
blob: d26cf2a1e5f04bfdc8aed53dcaaba22ad860c1d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddDeployKeyIdToCreateAccessLevels < Gitlab::Database::Migration[2.1]
  def up
    add_column :protected_tag_create_access_levels, :deploy_key_id, :integer
  end

  def down
    remove_column :protected_tag_create_access_levels, :deploy_key_id
  end
end