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
11 lines
126 B
PL/PgSQL
11 lines
126 B
PL/PgSQL
-- Revert camper:available_sexes from pg
|
|
|
|
begin;
|
|
|
|
set search_path to camper;
|
|
|
|
delete from sex_i18n;
|
|
delete from sex;
|
|
|
|
commit;
|