Sha256: 7268c5e8bfdc28fc1809449dc59879f12036403a0c7a005829c5ed26ae4f90cc

Contents?: true

Size: 504 Bytes

Versions: 41

Compression:

Stored size: 504 Bytes

Contents

class IndustryProduct < ActiveRecord::Base
  extend Earth::Base
  set_primary_key :naics_product_code
  
  has_many :product_line_industry_products, :foreign_key => 'naics_product_code'
  
  belongs_to :industry, :foreign_key => 'naics_code'
  
  def self.schema_definition
    lambda do
      string 'naics_product_code'
      string 'description'
      float  'value'
      string 'value_units'
      string 'naics_code'
    end
  end

  data_miner do
    IndustryProduct.define_schema(self)
  end
end

Version data entries

41 entries across 41 versions & 2 rubygems

Version Path
earth-0.5.0 lib/earth/industry/industry_product.rb
earth-0.4.12 lib/earth/industry/industry_product.rb
earth-0.4.11 lib/earth/industry/industry_product.rb
earth-0.4.10 lib/earth/industry/industry_product.rb
earth-0.4.9 lib/earth/industry/industry_product.rb
earth-0.4.8 lib/earth/industry/industry_product.rb
earth-0.4.7 lib/earth/industry/industry_product.rb
earth-0.4.6 lib/earth/industry/industry_product.rb
earth-0.4.5 lib/earth/industry/industry_product.rb
earth-0.4.4 lib/earth/industry/industry_product.rb
earth-0.4.3 lib/earth/industry/industry_product.rb
earth-0.4.2 lib/earth/industry/industry_product.rb
earth-0.4.1 lib/earth/industry/industry_product.rb
earth-0.4.0 lib/earth/industry/industry_product.rb
earth-0.3.15 lib/earth/industry/industry_product.rb
earth-0.3.14 lib/earth/industry/industry_product.rb
earth-0.3.13 lib/earth/industry/industry_product.rb
earth-0.3.11 lib/earth/industry/industry_product.rb
earth-0.3.10 lib/earth/industry/industry_product.rb
earth-0.3.9 lib/earth/industry/industry_product.rb