Revert restaurant_bookings icon to UtensilsCrossed

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-15 17:41:13 +00:00
parent ea3a2f46ff
commit 9e2a0914a0

View file

@ -142,7 +142,7 @@ export async function initDb() {
// ON CONFLICT DO NOTHING so restarts never reset base_path/active managed by settings. // ON CONFLICT DO NOTHING so restarts never reset base_path/active managed by settings.
await pool.query(` await pool.query(`
INSERT INTO apps (slug, name, description, base_path, icon, theme_color, category, active) INSERT INTO apps (slug, name, description, base_path, icon, theme_color, category, active)
VALUES ('restaurant_bookings', 'Table Bookings', 'Hosted table reservation system', '/bookings', 'Armchair', '#1a1a2e', 'Restaurant', FALSE) VALUES ('restaurant_bookings', 'Table Bookings', 'Hosted table reservation system', '/bookings', 'UtensilsCrossed', '#1a1a2e', 'Restaurant', FALSE)
ON CONFLICT (slug) DO NOTHING ON CONFLICT (slug) DO NOTHING
`) `)