Sha256: 2ed69366a89c18acda9c73232b8b90dd20886b8ced6ecc685e7c5d6fb3704465
Contents?: true
Size: 605 Bytes
Versions: 43
Compression:
Stored size: 605 Bytes
Contents
class RemoveRemoteExecutionWithoutProxySetting < ActiveRecord::Migration[5.2] def up Setting.where(name: 'remote_execution_without_proxy').delete_all end def down Setting.create!(:name => 'remote_execution_without_proxy', :description => N_('When enabled, the remote execution will try to run '\ 'the commands directly, when no proxy with remote execution '\ 'feature is configured for the host.'), :default => false, :full_name => N_('Fallback Without Proxy')) end end
Version data entries
43 entries across 43 versions & 1 rubygems