summaryrefslogtreecommitdiff
path: root/db/migrate/20121230110747_snom_meetingpoint.rb
blob: 04ad4509357f9e0d2bd289e2eed09deae014b1f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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