40 lines
680 B
PL/PgSQL
40 lines
680 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')
|
|
, ('pet')
|
|
, ('plot')
|
|
, ('pool')
|
|
, ('puzzle')
|
|
, ('restaurant')
|
|
, ('route')
|
|
, ('rv')
|
|
, ('shower')
|
|
, ('store')
|
|
, ('toilet')
|
|
, ('washer')
|
|
, ('wheelchair')
|
|
, ('wifi')
|
|
on conflict (icon_name) do nothing
|
|
;
|
|
|
|
commit;
|