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

20221013103738_add_disable_admin_oauth_scopes.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3406252790d767ee4f3ff1b892014bacf9df44af (plain)
1
2
3
4
5
6
7
# 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