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

20150915001905_enable_ssl_verification_by_default.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e924262a13eaa65cc65626b6cd0f26522e33121 (plain)
1
2
3
4
5
class EnableSslVerificationByDefault < ActiveRecord::Migration
  def change
    change_column :web_hooks, :enable_ssl_verification, :boolean, default: true
  end
end