unit cost

This commit is contained in:
2026-05-29 09:39:01 -05:00
parent 7de57cb35e
commit 7c76a0aabe
4 changed files with 22 additions and 9 deletions

View File

@@ -88,10 +88,10 @@ CREATE TABLE public.invoice_items (
amount character varying(50) NOT NULL,
item_order integer NOT NULL,
created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
qbo_item_id character varying(10) DEFAULT '9'::character varying
qbo_item_id character varying(10) DEFAULT '9'::character varying,
unit_cost character varying(50)
);
ALTER TABLE public.invoice_items OWNER TO quoteuser;
--