12 lines
152 B
MySQL
12 lines
152 B
MySQL
|
-- Verify camper:currency on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select currency_code
|
||
|
, currency_symbol
|
||
|
, decimal_digits
|
||
|
from camper.currency
|
||
|
where false;
|
||
|
|
||
|
rollback;
|