gitlab-org--gitlab-foss/db/migrate/20150916000405_enable_ssl_v...

9 lines
169 B
Ruby
Raw Normal View History

2015-09-15 13:19:32 +00:00
class EnableSslVerificationForWebHooks < ActiveRecord::Migration
def up
execute("UPDATE web_hooks SET enable_ssl_verification = true")
end
def down
end
end