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