camper/verify/campsite_type_option_i18n.sql

12 lines
179 B
PL/PgSQL

-- Verify camper:campsite_type_option_i18n on pg
begin;
select campsite_type_option_id
, lang_tag
, name
from camper.campsite_type_option_i18n
where false;
rollback;