It is a bit user-hostile because you have to create a new customer prior to create the invoice, but that’s what it is for now.
11 lines
136 B
PL/PgSQL
11 lines
136 B
PL/PgSQL
-- Verify camper:booking_invoice on pg
|
|
|
|
begin;
|
|
|
|
select booking_id
|
|
, invoice_id
|
|
from camper.booking_invoice
|
|
where false;
|
|
|
|
rollback;
|