hps_member/app/models/hps_county.rb

11 lines
198 B
Ruby
Raw Normal View History

2017-05-18 12:12:35 +00:00
class HpsCounty
include Mongoid::Document
include Mongoid::Timestamps
field :old_id
field :name
field :zip_code
belongs_to :hps_city
has_many :hps_schools, :dependent => :destroy
end