Class: IndustryProduct
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- IndustryProduct
- Extended by:
- Earth::Model
- Defined in:
- lib/earth/industry/industry_product.rb
Constant Summary collapse
- TABLE_STRUCTURE =
"\nCREATE TABLE industry_products\n (\n naics_product_code CHARACTER VARYING(255) NOT NULL PRIMARY KEY,\n description TEXT,\n value FLOAT,\n value_units CHARACTER VARYING(255),\n naics_code CHARACTER VARYING(255)\n );\n\n"