camper/verify/sex.sql
jordi fita mas f2b24a83a3 Add check-in form
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
2024-04-26 17:09:36 +02:00

11 lines
102 B
PL/PgSQL

-- Verify camper:sex on pg
begin;
select sex_id
, name
from camper.sex
where false;
rollback;