Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220610125248_add_enabled_git_access_protocol_to_namespace_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f16467acd146b0204f9dc6775a55b2f732b42c0 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddEnabledGitAccessProtocolToNamespaceSettings < Gitlab::Database::Migration[2.0]
  def change
    add_column :namespace_settings, :enabled_git_access_protocol, :integer, default: 0, null: false, limit: 2
  end
end