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/20120422072551_populate_softkey_function.rb | |
parent | 3e706c2025ecc5523e81ad649639ef2ff75e7bac (diff) | |
parent | b80bd744ad873f6fc43018bc4bfb90677de167bd (diff) |
Merge branch 'develop'
Diffstat (limited to 'db/migrate/20120422072551_populate_softkey_function.rb')
-rw-r--r-- | db/migrate/20120422072551_populate_softkey_function.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/db/migrate/20120422072551_populate_softkey_function.rb b/db/migrate/20120422072551_populate_softkey_function.rb new file mode 100644 index 0000000..91f5fd2 --- /dev/null +++ b/db/migrate/20120422072551_populate_softkey_function.rb @@ -0,0 +1,18 @@ +class PopulateSoftkeyFunction < ActiveRecord::Migration + def up + ['speed_dial', 'blf', 'dtmf', 'log_out', 'log_in', 'conference'].each do |function_name| + SoftkeyFunction.create(:name => function_name) + end + + SoftkeyFunction.where(:position => nil).order(:id).each do |softkey_function| + softkey_function.update_attributes(:position => softkey_function.id) if softkey_function.position.nil? + end + deactivated_softkey_function = SoftkeyFunction.create(:name => 'deactivated') + deactivated_softkey_function.move_to_top + end + + def down + SoftkeyFunction.where(:name => ['speed_dial', 'blf', 'dtmf', 'log_out', 'log_in', 'conference', 'deactivated'] ).destroy_all + end + +end |