-- Table: adempiere.I_OrgJP

-- DROP TABLE adempiere.I_OrgJP;

CREATE TABLE adempiere.I_OrgJP
(
  i_errormsg character varying(2000),
  i_isimported character(1) DEFAULT 'N'::bpchar,
  processing character(1),

  processed character(1) DEFAULT 'N'::bpchar,
  I_OrgJP_ID numeric(10,0) NOT NULL,
  AD_Client_ID numeric(10,0) DEFAULT 0,
  AD_Org_ID numeric(10,0) DEFAULT 0,
  IsActive character(1) NOT NULL DEFAULT 'Y'::bpchar,
  Created timestamp without time zone NOT NULL DEFAULT now(),
  CreatedBy numeric(10,0) NOT NULL,
  Updated timestamp without time zone NOT NULL DEFAULT now(),
  UpdatedBy numeric(10,0) NOT NULL,

  Value character varying(40) ,

  Name character varying(60) ,

  Description character varying(255),

  IsSummary character(1) NOT NULL DEFAULT 'N'::bpchar,

  AD_ReplicationStrategy_ID numeric,

  I_OrgJP_UU character varying(36) DEFAULT NULL::character varying
)
