This is more or less the same as the campsites, as public information goes, but for buildings and other amenities that the camping provides that are not campsites.
19 lines
752 B
PL/PgSQL
19 lines
752 B
PL/PgSQL
-- Verify camper:amenity_carousel on pg
|
|
|
|
begin;
|
|
|
|
select amenity_id
|
|
, media_id
|
|
, caption
|
|
, position
|
|
from camper.amenity_carousel
|
|
where false;
|
|
|
|
select 1 / count(*) from pg_class where oid = 'camper.amenity_carousel'::regclass and relrowsecurity;
|
|
select 1 / count(*) from pg_policy where polname = 'guest_ok' and polrelid = 'camper.amenity_carousel'::regclass;
|
|
select 1 / count(*) from pg_policy where polname = 'insert_to_company' and polrelid = 'camper.amenity_carousel'::regclass;
|
|
select 1 / count(*) from pg_policy where polname = 'update_company' and polrelid = 'camper.amenity_carousel'::regclass;
|
|
select 1 / count(*) from pg_policy where polname = 'delete_from_company' and polrelid = 'camper.amenity_carousel'::regclass;
|
|
|
|
rollback;
|