numerus/deploy/new_quote_amount.sql

15 lines
206 B
MySQL
Raw Normal View History

-- Deploy numerus:new_quote_amount to pg
-- requires: schema_numerus
begin;
set search_path to numerus, public;
create type new_quote_amount as (
subtotal text,
taxes text[][],
total text
);
commit;