Sha256: 58c0d99ba6c90eb8f03eefc13c4e50e34bcb2726833b6d69c1a3245c5bf83c5c
Contents?: true
Size: 457 Bytes
Versions: 19
Compression:
Stored size: 457 Bytes
Contents
class CensusRegion < ActiveRecord::Base set_primary_key :number has_many :census_divisions, :foreign_key => 'census_region_number' has_many :states, :through => :census_divisions # has_many :climate_divisions, :through => :census_divisions # has_many :zip_codes, :through => :census_divisions has_many :residential_energy_consumption_survey_responses, :foreign_key => 'census_region_number' col :number, :type => :integer col :name end
Version data entries
19 entries across 19 versions & 1 rubygems