CREATE TABLE adempiere.JP_IndustryTypeL2
(
  AD_Client_ID numeric(10,0) NOT NULL,
  AD_Org_ID numeric(10,0) NOT NULL,
  JP_IndustryTypeL2_ID numeric(10,0) NOT NULL,
  Createdby numeric(10,0) NOT NULL,
  Updatedby numeric(10,0) NOT NULL,
  Created timestamp without time zone NOT NULL DEFAULT statement_timestamp(),
  Updated timestamp without time zone NOT NULL DEFAULT statement_timestamp(),


  IsActive character(1) NOT NULL DEFAULT 'Y'::bpchar,
  JP_IndustryTypeL2_UU character varying(36) DEFAULT NULL::character varying,

  Description character varying(255) DEFAULT NULL::character varying,
  Name character varying(120) NOT NULL,
  Value character varying(40) NOT NULL,

  CONSTRAINT JP_IndustryTypeL2_key PRIMARY KEY (JP_IndustryTypeL2_ID)

)
