summaryrefslogtreecommitdiff
path: root/db/migrate/20220613112029_add_namespace_id_to_protected_branches.rb
blob: 1620a23d564bd039e35406ce9829779f7206c621 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddNamespaceIdToProtectedBranches < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def change
    add_column :protected_branches, :namespace_id, :bigint
  end
end