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.
10 lines
225 B
PL/PgSQL
10 lines
225 B
PL/PgSQL
-- Verify camper:add_contact on pg
|
|
|
|
begin;
|
|
|
|
set search_path to camper, public;
|
|
|
|
select has_function_privilege('add_contact(integer, text, text, text, text, text, text, text, text, text, country_code)', 'execute');
|
|
|
|
rollback;
|