14 lines
194 B
MySQL
14 lines
194 B
MySQL
|
-- Deploy numerus:new_expense_amount to pg
|
||
|
-- requires: schema_numerus
|
||
|
|
||
|
begin;
|
||
|
|
||
|
set search_path to numerus, public;
|
||
|
|
||
|
create type new_expense_amount as (
|
||
|
taxes text[][],
|
||
|
total text
|
||
|
);
|
||
|
|
||
|
commit;
|