Sha256: d957d200df17356af46639923300b6bb36971d2ccc16be9f015db152d39700f0
Contents?: true
Size: 506 Bytes
Versions: 45
Compression:
Stored size: 506 Bytes
Contents
class AutomobileModelYear < ActiveRecord::Base set_primary_key :name belongs_to :make_year, :class_name => 'AutomobileMakeYear', :foreign_key => 'make_year_name' has_many :variants, :class_name => 'AutomobileVariant', :foreign_key => 'model_year_name' has_many :automobiles, :foreign_key => 'model_year_id' data_miner do tap "Brighter Planet's model year data", Earth.taps_server process "pull dependencies" do run_data_miner_on_belongs_to_associations end end end
Version data entries
45 entries across 45 versions & 2 rubygems