12 lines
152 B
PL/PgSQL
12 lines
152 B
PL/PgSQL
-- Deploy camper:available_icons to pg
|
|
-- requires: schema_camper
|
|
-- requires: icon
|
|
|
|
begin;
|
|
|
|
delete from camper.icon
|
|
where icon_name = 'pet'
|
|
;
|
|
|
|
commit;
|