camper/verify/invoice_status.sql

11 lines
132 B
PL/PgSQL

-- Verify camper:invoice_status on pg
begin;
select invoice_status
, name
from camper.invoice_status
where false;
rollback;