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

9 lines
174 B
Ruby

class EnableSslVerificationForWebHooks < ActiveRecord::Migration[4.2]
def up
execute("UPDATE web_hooks SET enable_ssl_verification = true")
end
def down
end
end