camper/deploy/campsite_i18n.sql
jordi fita mas c284230436 Add public pages for each individual accommodation
A small page with a brief description, carousel, and feature list of
each individual accommodation.

Most of the relations and functions for carousel and features are like
the ones for campsite types, but i had to use the accommodation’s label
to find them, because they do not have slugs; i did not even though
these would be public, and they already have a label, although not
unique for all companies, like UUID slugs are.
2024-01-26 22:27:54 +01:00

24 lines
518 B
PL/PgSQL

-- Deploy camper:campsite_i18n to pg
-- requires: roles
-- requires: schema_camper
-- requires: campsite
-- requires: language
begin;
set search_path to camper, public;
create table campsite_i18n (
campsite_id integer not null references campsite,
lang_tag text not null references language,
info1 xml,
info2 xml,
primary key (campsite_id, lang_tag)
);
grant select on campsite_i18n to guest;
grant select on campsite_i18n to employee;
grant select, insert, update, delete on campsite_i18n to admin;
commit;