debian-mirror-gitlab/db/migrate/20221013103738_add_disable_admin_oauth_scopes.rb

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

8 lines
227 B
Ruby
Raw Normal View History

2023-01-13 00:05:48 +05:30
# frozen_string_literal: true
class AddDisableAdminOauthScopes < Gitlab::Database::Migration[2.0]
def change
add_column :application_settings, :disable_admin_oauth_scopes, :boolean, null: false, default: false
end
end