“Part”, because it is not possible to add or actually manage any booking yet, but it has the export feature that we need to validate the project.
11 lines
132 B
PL/PgSQL
11 lines
132 B
PL/PgSQL
-- Verify camper:booking_status on pg
|
|
|
|
begin;
|
|
|
|
select booking_status
|
|
, name
|
|
from camper.booking_status
|
|
where false;
|
|
|
|
rollback;
|