20 lines
323 B
PL/PgSQL
20 lines
323 B
PL/PgSQL
-- Deploy numerus:new_invoice_product to pg
|
|
-- requires: schema_numerus
|
|
-- requires: discount_rate
|
|
|
|
begin;
|
|
|
|
set search_path to numerus, public;
|
|
|
|
create type new_invoice_product as (
|
|
product_id integer,
|
|
name text,
|
|
description text,
|
|
price text,
|
|
quantity integer,
|
|
discount_rate discount_rate,
|
|
tax integer[]
|
|
);
|
|
|
|
commit;
|