Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. id int4 NOT NULL,
  2.     order_id int4 NOT NULL,
  3.     vendor_id int2 NOT NULL,
  4.     item_reference_id text NULL,
  5.     quantity int4 NOT NULL,
  6.     price float8 NOT NULL,
  7.     reseller_price float8 NOT NULL,
  8.     add_partner_price int4 NOT NULL DEFAULT 0,
  9.     refund_shipping_charges int4 NOT NULL DEFAULT 0,
  10.     item_kudo_fee numeric(19,4) NOT NULL DEFAULT 0.0000,
  11.     item_card_charging numeric(19,4) NOT NULL DEFAULT 0.0000,
  12.     item_shipping numeric(19,4) NOT NULL DEFAULT 0.0000,
  13.     item_discount numeric(19,4) NOT NULL DEFAULT 0.0000,
  14.     item_discount_shipping numeric(19,4) NOT NULL DEFAULT 0.0000,
  15.     item_komisi numeric(19,4) NOT NULL DEFAULT 0.0000,
  16.     item_name varchar(255) NOT NULL,
  17.     "attributes" text NULL,
  18.     qty_update_status varchar(1) NOT NULL DEFAULT 'T'::character varying,
  19.     item_delete_status varchar(1) NOT NULL DEFAULT 'T'::character varying,
  20.     order_step int4 NOT NULL DEFAULT 0,
  21.     status int4 NOT NULL DEFAULT 1,
  22.     kudobox_id int4 NULL,
  23.     cashier_id int4 NULL,
  24.     spot_id int4 NOT NULL DEFAULT 0,
  25.     agent_distributor_id int4 NOT NULL DEFAULT 0,
  26.     merchant_trx_id varchar(30) NULL DEFAULT NULL::character varying,
  27.     purchase_code varchar(25) NULL DEFAULT NULL::character varying,
  28.     shipping_code varchar(25) NULL DEFAULT NULL::character varying,
  29.     updated_at timestamp NULL,
  30.     created_at timestamp NULL,
  31.     shop_item_id int4 NULL,
  32.     device_id varchar NULL
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement