diff options
author | Alex Lossent <alexandre.lossent@cern.ch> | 2015-05-29 17:42:27 +0200 |
---|---|---|
committer | Alex Lossent <alexandre.lossent@cern.ch> | 2015-05-29 18:20:15 +0200 |
commit | 60225a067dd69e047088dc73f1227fce071311e3 (patch) | |
tree | 62931326d34fe15c89a534f6e0e1f985944dee2c /db/migrate | |
parent | a3b60982e59b7a3be052a62b5d89393d12c64562 (diff) | |
download | gitlab-ce-60225a067dd69e047088dc73f1227fce071311e3.tar.gz |
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.rb | 5 |
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 |