I based the form from the documentation given by the Mossos d’Esquadra[0], required by law. https://registreviatgers.mossos.gencat.cat/mossos_hotels/AppJava/fitxaviatger.do?reqCode=create
12 lines
128 B
PL/PgSQL
12 lines
128 B
PL/PgSQL
-- Verify camper:sex_i18n on pg
|
|
|
|
begin;
|
|
|
|
select sex_id
|
|
, lang_tag
|
|
, name
|
|
from camper.sex_i18n
|
|
where false;
|
|
|
|
rollback;
|