summaryrefslogtreecommitdiff
path: root/db/migrate/20121230110747_snom_meetingpoint.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20121230110747_snom_meetingpoint.rb')
-rw-r--r--db/migrate/20121230110747_snom_meetingpoint.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/db/migrate/20121230110747_snom_meetingpoint.rb b/db/migrate/20121230110747_snom_meetingpoint.rb
new file mode 100644
index 0000000..04ad450
--- /dev/null
+++ b/db/migrate/20121230110747_snom_meetingpoint.rb
@@ -0,0 +1,14 @@
+class SnomMeetingpoint < ActiveRecord::Migration
+ def up
+ if Manufacturer.where(:ieee_name => 'SNOM Technology AG').any?
+ snom = Manufacturer.where(:ieee_name => 'SNOM Technology AG').first
+ snom.phone_models.create(:name => 'snom MeetingPoint',
+ :product_homepage_url => 'http://www.snom.com/en/products/sip-conference-phone/snom-meetingpoint/',
+ :product_manual_homepage_url => 'http://wiki.snom.com/Snom_MeetingPoint/Documentation')
+ end
+ end
+
+ def down
+ PhoneModels.where(:name => 'snom MeetingPoint').destroy_all
+ end
+end