debian-mirror-gitlab/db/migrate/20180223144945_add_allow_local_requests_from_hooks_and_services_to_application_settings.rb
2019-02-15 15:39:39 +05:30

19 lines
546 B
Ruby

class AddAllowLocalRequestsFromHooksAndServicesToApplicationSettings < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_column_with_default(:application_settings, :allow_local_requests_from_hooks_and_services,
:boolean,
default: false,
allow_null: false)
end
def down
remove_column(:application_settings, :allow_local_requests_from_hooks_and_services)
end
end