12 lines
141 B
MySQL
12 lines
141 B
MySQL
|
-- Verify camper:country on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select country_code
|
||
|
, name
|
||
|
, postal_code_regex
|
||
|
from camper.country
|
||
|
where false;
|
||
|
|
||
|
rollback;
|