additional features, refinement and more control over the app from admin side, better bookings UX

This commit is contained in:
mikicvi
2025-09-25 20:23:18 +01:00
parent 6d3202e385
commit b89d91ade2
20 changed files with 1358 additions and 328 deletions
@@ -0,0 +1,8 @@
CREATE TABLE `metrics` (
`id` text PRIMARY KEY NOT NULL,
`metric_type` text NOT NULL,
`period` text NOT NULL,
`value` integer DEFAULT 0 NOT NULL,
`created_at` integer NOT NULL,
`updated_at` integer NOT NULL
);