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.
12 lines
204 B
PL/PgSQL
12 lines
204 B
PL/PgSQL
-- Deploy camper:campsite__info to pg
|
|
-- requires: campsite
|
|
|
|
begin;
|
|
|
|
alter table camper.campsite
|
|
add column info1 xml not null default ''::xml
|
|
, add column info2 xml not null default ''::xml
|
|
;
|
|
|
|
commit;
|