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
18 lines
277 B
PL/PgSQL
18 lines
277 B
PL/PgSQL
-- Deploy camper:sex to pg
|
|
-- requires: roles
|
|
-- requires: schema_camper
|
|
|
|
begin;
|
|
|
|
set search_path to camper, public;
|
|
|
|
create table sex (
|
|
sex_id varchar(1) primary key,
|
|
name text not null
|
|
);
|
|
|
|
grant select on table sex to employee;
|
|
grant select on table sex to admin;
|
|
|
|
commit;
|