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: 3f070139418b00d7ec54f4084972f6e62f170d5b (plain)
1
2
3
4
5
6
# rubocop:disable all
class EnableSslVerificationByDefault < ActiveRecord::Migration
  def change
    change_column :web_hooks, :enable_ssl_verification, :boolean, default: true
  end
end