summaryrefslogtreecommitdiffstats
path: root/db/migrate/20180913072918_add_verify_peer_to_auth_sources.rb
blob: b36564c10a4c30ff7344627a5cf68563c2ea900a (plain)
1
2
3
4
5
6
7
class AddVerifyPeerToAuthSources < ActiveRecord::Migration[5.2]
  def change
    change_table :auth_sources do |t|
      t.boolean :verify_peer, default: true, null: false
    end
  end
end