Advertisement
aadddrr

Untitled

Mar 7th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CREATE TABLE tt_warranty_sell_amount (
  2.     session_id  character varying(50),
  3.     invoice_id  bigint,
  4.     do_item_id  bigint,
  5.     sum_warranty_sell_amount    numeric,
  6.         CONSTRAINT tt_warranty_sell_amount_pkey PRIMARY KEY (invoice_id, do_item_id)
  7.     )WITH (
  8.       OIDS=FALSE
  9.     );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement