summaryrefslogtreecommitdiff
path: root/db/migrate/20150915001905_enable_ssl_verification_by_default.rb
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