Sha256: b3b628424973a52fde98ddff7f7bf944416c3635a3fcea466e9a4968381dbe8b
Contents?: true
Size: 530 Bytes
Versions: 23
Compression:
Stored size: 530 Bytes
Contents
class Industry < ActiveRecord::Base set_primary_key :naics_code has_many :industries_product_lines, :foreign_key => 'naics_code' has_many :product_lines, :through => :industries_product_lines has_many :industries_sectors, :foreign_key => 'naics_code' has_many :sectors, :through => :industries_sectors has_many :merchant_categories_industries, :foreign_key => 'naics_code', :class_name => 'MerchantCategoriesIndustries' data_miner do tap "Brighter Planet's industry data", Earth.taps_server end end
Version data entries
23 entries across 23 versions & 1 rubygems