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