campingmontagut/deploy/campsite_feature.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

57 lines
1.4 KiB
PL/PgSQL

-- Deploy camper:campsite_feature to pg
-- requires: roles
-- requires: schema_camper
-- requires: campsite
-- requires: icon
-- requires: user_profile
begin;
set search_path to camper, public;
create table campsite_feature (
campsite_feature_id integer generated by default as identity primary key,
campsite_id integer not null references campsite,
icon_name text not null references icon,
name text not null constraint name_not_empty check(length(trim(name)) > 0),
position integer not null default 2147483647
);
grant select on table campsite_feature to guest;
grant select on table campsite_feature to employee;
grant select, insert, update, delete on table campsite_feature to admin;
alter table campsite_feature enable row level security;
create policy guest_ok
on campsite_feature
for select
using (true)
;
create policy insert_to_company
on campsite_feature
for insert
with check (
exists (select 1 from campsite join user_profile using (company_id) where campsite.campsite_id = campsite_feature.campsite_id)
)
;
create policy update_company
on campsite_feature
for update
using (
exists (select 1 from campsite join user_profile using (company_id) where campsite.campsite_id = campsite_feature.campsite_id)
)
;
create policy delete_from_company
on campsite_feature
for delete
using (
exists (select 1 from campsite join user_profile using (company_id) where campsite.campsite_id = campsite_feature.campsite_id)
)
;
commit;