您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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