8 lines
114 B
PL/PgSQL
8 lines
114 B
PL/PgSQL
-- Revert camper:cancel_booking from pg
|
|
|
|
begin;
|
|
|
|
drop function if exists camper.cancel_booking(integer);
|
|
|
|
commit;
|