summaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20180913072918_add_verify_peer_to_auth_sources.rb7
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