debian-mirror-gitlab/db/migrate/20220613112029_add_namespace_id_to_protected_branches.rb
2023-01-12 18:35:48 +00:00

10 lines
212 B
Ruby

# 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