debian-mirror-gitlab/db/migrate/20180223144945_add_allow_local_requests_from_hooks_and_services_to_application_settings.rb

19 lines
546 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class AddAllowLocalRequestsFromHooksAndServicesToApplicationSettings < ActiveRecord::Migration[4.2]
2018-03-26 14:24:53 +05:30
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