summaryrefslogtreecommitdiff
path: root/db/migrate/20150824002011_add_enable_ssl_verification.rb
blob: 6e992f0883429ff406bd08018f1dc314e4db8c86 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddEnableSslVerification < ActiveRecord::Migration
  def change
    add_column :web_hooks, :enable_ssl_verification, :boolean, default: false
  end
end