-- 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') , ('electricity') , ('flask_gear') , ('fridge') , ('grate_droplet') , ('hvac') , ('information') , ('kayak') , ('nopet') , ('outing') , ('person') , ('pet') , ('plot') , ('pool') , ('puzzle') , ('restaurant') , ('route') , ('rv') , ('sailboat') , ('shirt') , ('shop') , ('shower') , ('store') , ('tent') , ('toilet') , ('washer') , ('wheelchair') , ('wifi') on conflict (icon_name) do nothing ; commit;