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

20150529111607_add_user_oauth_applications_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: 9b02eda56abfc4e76a7f7c7758fe99cca822369a (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddUserOauthApplicationsToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :user_oauth_applications, :bool, default: true
  end
end