From b80bd744ad873f6fc43018bc4bfb90677de167bd Mon Sep 17 00:00:00 2001 From: Stefan Wintermeyer Date: Mon, 17 Dec 2012 12:01:45 +0100 Subject: Start of GS5. --- db/migrate/20120422072551_populate_softkey_function.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 db/migrate/20120422072551_populate_softkey_function.rb (limited to 'db/migrate/20120422072551_populate_softkey_function.rb') 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 -- cgit v1.2.3