21 lines
357 B
MySQL
21 lines
357 B
MySQL
|
-- 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;
|