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

20160504091942_add_disabled_oauth_sign_in_sources_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bf50616656c3c4bc181f18fff3bb30a8094d6075 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddDisabledOauthSignInSourcesToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :disabled_oauth_sign_in_sources, :text
  end
end