diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-24 23:02:40 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-24 23:03:16 +0100 |
commit | c09553494684447245238cbc2874ce65d4aaecee (patch) | |
tree | 5c40b121c588154fff682e824b42a42ff5813874 /db/migrate | |
parent | 2efc5f3853d5120c4ed4c7801e320464ca36e9b9 (diff) |
Autohelp config.
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20130124175109_show_admin_auto_online_help.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20130124175109_show_admin_auto_online_help.rb b/db/migrate/20130124175109_show_admin_auto_online_help.rb new file mode 100644 index 0000000..9c3f733 --- /dev/null +++ b/db/migrate/20130124175109_show_admin_auto_online_help.rb @@ -0,0 +1,9 @@ +class ShowAdminAutoOnlineHelp < ActiveRecord::Migration + def up + GsParameter.create(:name => 'AUTO_ADMIN_ONLINE_HELP', :section => 'Documentation', :value => 'true', :class_type => 'Boolean', :description => 'Gemeinschaft will include tips and help whenever it seems fit.') + end + + def down + GsParameter.where(:name => 'AUTO_ADMIN_ONLINE_HELP').destroy_all + end +end |