Copied as much as i could from Numerus, and made as few modifications as i could to adapt to this code base; it is, quite frankly, a piece of shit. We need to be able to create invoices from scratch “just in case”, apparently, but it is not yet possible to create an invoice from a booking.
18 lines
412 B
PL/PgSQL
18 lines
412 B
PL/PgSQL
-- Deploy camper:edit_contact to pg
|
|
-- requires: schema_camper
|
|
-- requires: email
|
|
-- requires: extension_uri
|
|
-- requires: country_code
|
|
-- requires: tag_name
|
|
-- requires: contact
|
|
-- requires: extension_vat
|
|
-- requires: extension_pg_libphonenumber
|
|
|
|
begin;
|
|
|
|
set search_path to camper, public;
|
|
|
|
drop function if exists edit_contact(uuid, text, text, text, text, text, text, text, text, text, country_code);
|
|
|
|
commit;
|