summaryrefslogtreecommitdiff
path: root/db/migrate/20150916000405_enable_ssl_verification_for_web_hooks.rb
blob: 49081c9d7495ae2a102bb164989efd5aac66c1bc (plain)
1
2
3
4
5
6
7
8
class EnableSslVerificationForWebHooks < ActiveRecord::Migration[4.2]
  def up
    execute("UPDATE web_hooks SET enable_ssl_verification = true")
  end

  def down
  end
end