-- Deploy camper:campsite_type_feature to pg -- requires: roles -- requires: schema_camper -- requires: campsite_type -- requires: icon -- requires: user_profile begin; set search_path to camper, public; create table campsite_type_feature ( campsite_type_feature_id integer generated by default as identity primary key, campsite_type_id integer not null references campsite_type, 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 campsite_type_feature to guest; grant select on campsite_type_feature to employee; grant select, insert, update, delete on campsite_type_feature to admin; alter table campsite_type_feature enable row level security; create policy guest_ok on campsite_type_feature for select using (true) ; create policy insert_to_company on campsite_type_feature for insert with check ( exists (select 1 from campsite_type join user_profile using (company_id) where campsite_type.campsite_type_id = campsite_type_feature.campsite_type_id) ) ; create policy update_company on campsite_type_feature for update using ( exists (select 1 from campsite_type join user_profile using (company_id) where campsite_type.campsite_type_id = campsite_type_feature.campsite_type_id) ) ; create policy delete_from_company on campsite_type_feature for delete using ( exists (select 1 from campsite_type join user_profile using (company_id) where campsite_type.campsite_type_id = campsite_type_feature.campsite_type_id) ) ; commit;