Sha256: 469507db8c2734d0d14c256c49c10a4b3bd1f944cfd806ee28b6f3da14e95f2b
Contents?: true
Size: 433 Bytes
Versions: 43
Compression:
Stored size: 433 Bytes
Contents
class IndustryProductLine < ActiveRecord::Base extend Earth::Base set_primary_key :row_hash belongs_to :industry, :foreign_key => 'naics_code' belongs_to :product_line, :foreign_key => 'ps_code' def self.schema_definition lambda do string 'row_hash' string 'naics_code' float 'ratio' string 'ps_code' end end data_miner do IndustryProductLine.define_schema(self) end end
Version data entries
43 entries across 43 versions & 2 rubygems