diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2018-09-23 13:28:36 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2018-09-23 13:28:36 +0000 |
commit | a9eaf563a5d24a2295f234453cec82811e908dd9 (patch) | |
tree | 30a50e943ea15d367d66db403adb0c0b6e10ad71 /db | |
parent | 2ef5ce247a895f28fb731da2ece940164f8ca19d (diff) | |
download | redmine-a9eaf563a5d24a2295f234453cec82811e908dd9.tar.gz redmine-a9eaf563a5d24a2295f234453cec82811e908dd9.zip |
Support self-signed LDAPS connections (#29606).
Patch by Gregor Schmidt.
git-svn-id: http://svn.redmine.org/redmine/trunk@17505 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20180913072918_add_verify_peer_to_auth_sources.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20180913072918_add_verify_peer_to_auth_sources.rb b/db/migrate/20180913072918_add_verify_peer_to_auth_sources.rb new file mode 100644 index 000000000..b36564c10 --- /dev/null +++ b/db/migrate/20180913072918_add_verify_peer_to_auth_sources.rb @@ -0,0 +1,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 |