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

20150824002011_add_enable_ssl_verification.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 093c068fbde7ecee87d1e7cc978cacfebfc37794 (plain)
1
2
3
4
5
class AddEnableSslVerification < ActiveRecord::Migration
  def change
    add_column :web_hooks, :enable_ssl_verification, :boolean, default: false
  end
end