camper/deploy/available_icons.sql

31 lines
501 B
PL/PgSQL

-- Deploy camper:available_icons to pg
-- requires: schema_camper
-- requires: icon
begin;
insert into camper.icon (icon_name)
values ('baby')
, ('ball')
, ('bicycle')
, ('campfire')
, ('castle')
, ('fridge')
, ('information')
, ('kayak')
, ('outing')
, ('pool')
, ('puzzle')
, ('restaurant')
, ('route')
, ('rv')
, ('shower')
, ('store')
, ('toilet')
, ('washer')
, ('wheelchair')
, ('wifi')
;
commit;