BigW Consortium Gitlab

20150916000405_enable_ssl_verification_for_web_hooks.rb 191 Bytes
Newer Older
1
# rubocop:disable all
Valery Sizov committed
2 3 4 5 6 7 8 9
class EnableSslVerificationForWebHooks < ActiveRecord::Migration
  def up
    execute("UPDATE web_hooks SET enable_ssl_verification = true")
  end

  def down
  end
end