camper/deploy/available_icons@v1.sql

38 lines
630 B
PL/PgSQL

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