11 lines
132 B
MySQL
11 lines
132 B
MySQL
|
-- Verify camper:invoice_status on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select invoice_status
|
||
|
, name
|
||
|
from camper.invoice_status
|
||
|
where false;
|
||
|
|
||
|
rollback;
|