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.
19 lines
760 B
PL/PgSQL
19 lines
760 B
PL/PgSQL
-- Verify camper:campsite_carousel on pg
|
|
|
|
begin;
|
|
|
|
select campsite_id
|
|
, media_id
|
|
, caption
|
|
, position
|
|
from camper.campsite_carousel
|
|
where false;
|
|
|
|
select 1 / count(*) from pg_class where oid = 'camper.campsite_carousel'::regclass and relrowsecurity;
|
|
select 1 / count(*) from pg_policy where polname = 'guest_ok' and polrelid = 'camper.campsite_carousel'::regclass;
|
|
select 1 / count(*) from pg_policy where polname = 'insert_to_company' and polrelid = 'camper.campsite_carousel'::regclass;
|
|
select 1 / count(*) from pg_policy where polname = 'update_company' and polrelid = 'camper.campsite_carousel'::regclass;
|
|
select 1 / count(*) from pg_policy where polname = 'delete_from_company' and polrelid = 'camper.campsite_carousel'::regclass;
|
|
|
|
rollback;
|