You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20180913072918_add_verify_peer_to_auth_sources.rb 190B

1234567
  1. class AddVerifyPeerToAuthSources < ActiveRecord::Migration[5.2]
  2. def change
  3. change_table :auth_sources do |t|
  4. t.boolean :verify_peer, default: true, null: false
  5. end
  6. end
  7. end