camper/verify/country.sql

12 lines
141 B
MySQL
Raw Permalink Normal View History

-- Verify camper:country on pg
begin;
select country_code
, name
, postal_code_regex
from camper.country
where false;
rollback;