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.
35 lines
876 B
PL/PgSQL
35 lines
876 B
PL/PgSQL
-- Deploy camper:add_campsite to pg
|
|
-- requires: roles
|
|
-- requires: schema_camper
|
|
-- requires: campsite
|
|
-- requires: campsite_type
|
|
|
|
begin;
|
|
|
|
set search_path to camper, public;
|
|
|
|
create or replace function add_campsite(campsite_type integer, label text) returns integer as
|
|
$$
|
|
declare
|
|
cid integer;
|
|
begin
|
|
insert into campsite (company_id, campsite_type_id, label)
|
|
select company_id, campsite_type_id, label
|
|
from campsite_type
|
|
where campsite_type_id = add_campsite.campsite_type
|
|
returning campsite_id into cid
|
|
;
|
|
if cid is null then
|
|
raise foreign_key_violation using message = 'insert or update on table "campsite" violates foreign key constraint "campsite_campsite_type_id_fkey"';
|
|
end if;
|
|
return cid;
|
|
end
|
|
$$
|
|
language plpgsql
|
|
;
|
|
|
|
revoke execute on function add_campsite(integer, text) from public;
|
|
grant execute on function add_campsite(integer, text) to admin;
|
|
|
|
commit;
|