diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2012-12-17 12:05:14 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2012-12-17 12:05:14 +0100 |
commit | eaad37485fe59d0306c37cc038dda6d210052910 (patch) | |
tree | 072c4b0e33d442528555b82c415f5e7a1712b2b0 /db/migrate/20120515124103_add_hold_softkey_function.rb | |
parent | 3e706c2025ecc5523e81ad649639ef2ff75e7bac (diff) | |
parent | b80bd744ad873f6fc43018bc4bfb90677de167bd (diff) |
Merge branch 'develop'
Diffstat (limited to 'db/migrate/20120515124103_add_hold_softkey_function.rb')
-rw-r--r-- | db/migrate/20120515124103_add_hold_softkey_function.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/db/migrate/20120515124103_add_hold_softkey_function.rb b/db/migrate/20120515124103_add_hold_softkey_function.rb new file mode 100644 index 0000000..4e16587 --- /dev/null +++ b/db/migrate/20120515124103_add_hold_softkey_function.rb @@ -0,0 +1,14 @@ +class AddHoldSoftkeyFunction < ActiveRecord::Migration + def up + softkey_function = SoftkeyFunction.find_or_create_by_name('hold') + gui_function = GuiFunction.find_or_create_by_name("softkey_function_#{softkey_function.name.downcase}_field_in_softkey_form", + :category => 'Softkey edit view', + :description => "Show the softkey function '#{softkey_function.name}' in the softkey form.") + end + + def down + softkey_function = SoftkeyFunction.find_by_name('hold') + softkey_function.destroy + GuiFunction.find_by_name("softkey_function_#{softkey_function.name.downcase}_field_in_softkey_form").destroy + end +end |