gitlab-org--gitlab-foss/db/migrate/20150529111607_add_user_oau...

7 lines
208 B
Ruby

# rubocop:disable all
class AddUserOauthApplicationsToApplicationSettings < ActiveRecord::Migration
def change
add_column :application_settings, :user_oauth_applications, :bool, default: true
end
end