numerus/deploy/edited_invoice_product.sql

21 lines
357 B
MySQL
Raw Normal View History

2023-03-11 19:58:20 +00:00
-- Deploy numerus:edited_invoice_product to pg
-- requires: schema_numerus
-- requires: discount_rate
begin;
set search_path to numerus, public;
create type edited_invoice_product as
( invoice_product_id integer
, product_id integer
, name text
, description text
, price text
, quantity integer
, discount_rate discount_rate
, tax integer[]
);
commit;