Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20150916000405_enable_ssl_verification_for_web_hooks.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea2ab6e40936cb720499bb410812623ae40aef2b (plain)
1
2
3
4
5
6
7
8
9
# rubocop:disable all
class EnableSslVerificationForWebHooks < ActiveRecord::Migration
  def up
    execute("UPDATE web_hooks SET enable_ssl_verification = true")
  end

  def down
  end
end