debian-mirror-gitlab/db/migrate/20150916000405_enable_ssl_verification_for_web_hooks.rb

9 lines
174 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class EnableSslVerificationForWebHooks < ActiveRecord::Migration[4.2]
2015-09-25 12:07:36 +05:30
def up
execute("UPDATE web_hooks SET enable_ssl_verification = true")
end
def down
end
end