Sha256: ef5fa47970570c0930b90031f7ad960ca1a923f446c56c7909833ba2f69c4d83

Contents?: true

Size: 596 Bytes

Versions: 7

Compression:

Stored size: 596 Bytes

Contents

require 'earth/model'

require 'earth/industry/naics_2002_naics_2007_concordance'
require 'earth/industry/naics_2002'

class Naics2007 < ActiveRecord::Base
  extend Earth::Model

  TABLE_STRUCTURE = <<-EOS

CREATE TABLE naics_2007
  (
     code        CHARACTER VARYING(255) NOT NULL PRIMARY KEY,
     description CHARACTER VARYING(255)
  );

EOS

  self.primary_key = "code"
  self.table_name = "naics_2007"
  
  has_many :naics_2002_naics_2007_concordances, :foreign_key => :naics_2007_code
  has_many :naics_2002, :through => :naics_2002_naics_2007_concordances
  
  warn_unless_size 2328
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
earth-1.2.1 lib/earth/industry/naics_2007.rb
earth-1.1.2 lib/earth/industry/naics_2007.rb
earth-1.1.1 lib/earth/industry/naics_2007.rb
earth-1.1.0 lib/earth/industry/naics_2007.rb
earth-1.0.3 lib/earth/industry/naics_2007.rb
earth-1.0.2 lib/earth/industry/naics_2007.rb
earth-1.0.1 lib/earth/industry/naics_2007.rb