CREATE TABLE adempiere.JP_InvValProfileOrg
(
  JP_InvValProfileOrg_ID numeric(10,0) NOT NULL,
  JP_InvValProfileOrg_uu character varying(36) DEFAULT NULL::character varying,
  AD_Client_ID numeric(10,0) NOT NULL,
  AD_Org_ID numeric(10,0) NOT NULL,
  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,

  JP_InvValProfile_ID numeric(10,0) NOT NULL,
  Description character varying(255) DEFAULT NULL::character varying,
  
  M_Pricelist_ID numeric(10,0) DEFAULT NULL::numeric,
  M_DiscountSchema_ID numeric(10,0) DEFAULT NULL::numeric,

  CONSTRAINT JP_InvValProfileOrg_pkey PRIMARY KEY (JP_InvValProfileOrg_ID)
)