CREATE TABLE adempiere.JP_EstimationTax
(
  JP_Estimation_ID numeric(10,0) NOT NULL,

  C_Tax_ID numeric(10,0) NOT NULL,

  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,

  TaxBaseAmt numeric NOT NULL DEFAULT 0,

  TaxAmt numeric NOT NULL DEFAULT 0,

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

  JP_EstimationTax_uu character varying(36) DEFAULT NULL::character varying,

  C_TaxProvider_ID numeric(10,0) DEFAULT NULL::numeric,


  CONSTRAINT JP_EstimationTax_pkey PRIMARY KEY (JP_Estimation_ID, C_Tax_ID)
)