summaryrefslogtreecommitdiff
path: root/db/migrate/20130129154700_add_sso_key.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20130129154700_add_sso_key.rb')
-rw-r--r--db/migrate/20130129154700_add_sso_key.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20130129154700_add_sso_key.rb b/db/migrate/20130129154700_add_sso_key.rb
new file mode 100644
index 0000000..2e47f39
--- /dev/null
+++ b/db/migrate/20130129154700_add_sso_key.rb
@@ -0,0 +1,9 @@
+class AddSsoKey < ActiveRecord::Migration
+ def up
+ GsParameter.create(:name => 'SingleSignOnEnvUserNameKey', :section => 'Generic', :value => '', :class_type => 'Nil', :description => 'When set to a string this env variable will be used to authenticate the user. e.g. REMOTE_USER')
+ end
+
+ def down
+ GsParameter.create(:name => 'SingleSignOnEnvUserNameKey').destroy_all
+ end
+end