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