app/models/popolo/address.rb in popolo-0.0.1 vs app/models/popolo/address.rb in popolo-0.0.2

- old
+ new

@@ -8,20 +8,20 @@ # The address' type, e.g. 'capitol'. field :type, type: String # The postal address. field :address, type: String # A voice telephone number. - field :voice, type: Integer + field :voice, type: String # A facsimile telephone number. - field :fax, type: Integer + field :fax, type: String # A mobile telephone number. - field :cell, type: Integer + field :cell, type: String # A toll-free telephone number. - field :tollfree, type: Integer + field :tollfree, type: String # A video conferencing telephone number. - field :video, type: Integer + field :video, type: String # A paging device telephone number. - field :pager, type: Integer + field :pager, type: String # A telecommunication device for people with hearing or speech difficulties. - field :textphone, type: Integer + field :textphone, type: String end end