debian-mirror-gitlab/db/migrate/20220610125248_add_enabled_git_access_protocol_to_namespace_settings.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
252 B
Ruby
Raw Normal View History

2022-07-23 23:45:48 +05:30
# 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