Expand calendar event icon options

This commit is contained in:
Rafael Foster
2026-04-27 22:22:30 -03:00
parent 33e4afc009
commit b4d74f239b
5 changed files with 137 additions and 27 deletions
+7
View File
@@ -741,6 +741,13 @@ const MIGRATIONS = [
ALTER TABLE calendar_events ADD COLUMN icon TEXT NOT NULL DEFAULT 'calendar';
`,
},
{
version: 22,
description: 'Normalize calendar dentist icon',
up: `
UPDATE calendar_events SET icon = 'drill' WHERE icon = 'tooth';
`,
},
];
/**