camper/deploy/available_icons.sql

48 lines
833 B
MySQL
Raw Normal View History

-- Deploy camper:available_icons to pg
-- requires: schema_camper
-- requires: icon
begin;
insert into camper.icon (icon_name)
values ('area')
, ('baby')
, ('ball')
, ('barbecue')
, ('bicycle')
, ('cabin')
, ('campfire')
, ('castle')
, ('ecofriendly')
2023-12-21 16:40:06 +00:00
, ('electricity')
, ('flask_gear')
, ('fridge')
, ('grate_droplet')
, ('hvac')
, ('information')
, ('kayak')
, ('nopet')
, ('outing')
, ('person')
2024-01-24 00:01:22 +00:00
, ('pet')
2023-12-21 16:40:06 +00:00
, ('plot')
, ('pool')
, ('puzzle')
, ('restaurant')
, ('route')
, ('rv')
, ('sailboat')
, ('shirt')
, ('shop')
, ('shower')
, ('store')
, ('tent')
, ('toilet')
, ('washer')
, ('wheelchair')
, ('wifi')
2024-01-24 00:01:22 +00:00
on conflict (icon_name) do nothing
;
commit;