21 lines
327 B
PL/PgSQL
21 lines
327 B
PL/PgSQL
-- Deploy numerus:tax_details to pg
|
|
-- requires: schema_numerus
|
|
-- requires: extension_vat
|
|
-- requires: country_code
|
|
|
|
begin;
|
|
|
|
set search_path to numerus, public;
|
|
|
|
create type tax_details as (
|
|
business_name text,
|
|
vatin text,
|
|
address text,
|
|
city text,
|
|
province text,
|
|
postal_code text,
|
|
country_code country_code
|
|
);
|
|
|
|
commit;
|