12 lines
151 B
MySQL
12 lines
151 B
MySQL
|
-- Verify camper:booking_campsite on pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
select booking_id
|
||
|
, campsite_id
|
||
|
, stay
|
||
|
from camper.booking_campsite
|
||
|
where false;
|
||
|
|
||
|
rollback;
|