debian-mirror-gitlab/db/migrate/20150916000405_enable_ssl_verification_for_web_hooks.rb
2016-06-16 23:09:34 +05:30

10 lines
191 B
Ruby

# rubocop:disable all
class EnableSslVerificationForWebHooks < ActiveRecord::Migration
def up
execute("UPDATE web_hooks SET enable_ssl_verification = true")
end
def down
end
end