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