Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Lossent <alexandre.lossent@cern.ch>2015-05-29 18:42:27 +0300
committerAlex Lossent <alexandre.lossent@cern.ch>2015-05-29 19:20:15 +0300
commit60225a067dd69e047088dc73f1227fce071311e3 (patch)
tree62931326d34fe15c89a534f6e0e1f985944dee2c /db/migrate
parenta3b60982e59b7a3be052a62b5d89393d12c64562 (diff)
Allow to configure a URL to show after sign out
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20150529150354_add_after_sign_out_path_for_application_settings.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20150529150354_add_after_sign_out_path_for_application_settings.rb b/db/migrate/20150529150354_add_after_sign_out_path_for_application_settings.rb
new file mode 100644
index 00000000000..83e08101407
--- /dev/null
+++ b/db/migrate/20150529150354_add_after_sign_out_path_for_application_settings.rb
@@ -0,0 +1,5 @@
+class AddAfterSignOutPathForApplicationSettings < ActiveRecord::Migration
+ def change
+ add_column :application_settings, :after_sign_out_path, :string
+ end
+end \ No newline at end of file