diff options
author | Julian Pawlowski <julian.pawlowski@gmail.com> | 2013-04-05 13:03:53 +0200 |
---|---|---|
committer | Julian Pawlowski <julian.pawlowski@gmail.com> | 2013-04-05 13:03:53 +0200 |
commit | 8e501cb021c8977b21653d7050e8cde27b5c3546 (patch) | |
tree | 7abcabdea82771097f0824c2e170c710aa10572b | |
parent | d1ae9ca0016388a0778ece5f382c99f156bdabcb (diff) |
minor corrections to DTAG and o2
-rw-r--r-- | db/migrate/20120119154952_area_codes_germany.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/db/migrate/20120119154952_area_codes_germany.rb b/db/migrate/20120119154952_area_codes_germany.rb index 6a4ce56..567734f 100644 --- a/db/migrate/20120119154952_area_codes_germany.rb +++ b/db/migrate/20120119154952_area_codes_germany.rb @@ -5214,7 +5214,7 @@ class AreaCodesGermany < ActiveRecord::Migration # Mobilfunknetze # '01511, 01512, 01514, 01515, 0160, 0170, 0171, 0175'.gsub(/[^0-9\,]/,'').split(/,/).each do |area_code| - AreaCode.create(:country => germany, :name => "D1 Mobilfunknetz (Telekom)", :area_code => area_code.gsub(/^0/,'')) + AreaCode.create(:country => germany, :name => "Telekom Mobilfunknetz", :area_code => area_code.gsub(/^0/,'')) end '01520, 01522, 01525, 0162, 0172, 0173, 0174'.gsub(/[^0-9\,]/,'').split(/,/).each do |area_code| @@ -5226,7 +5226,7 @@ class AreaCodesGermany < ActiveRecord::Migration end '0176, 0179, 0159, 01505'.gsub(/[^0-9\,]/,'').split(/,/).each do |area_code| - AreaCode.create(:country => germany, :name => "O2 Mobilfunknetz", :area_code => area_code.gsub(/^0/,'')) + AreaCode.create(:country => germany, :name => "o2 Mobilfunknetz", :area_code => area_code.gsub(/^0/,'')) end # Sondervorwahlen |