phase 16: React dashboard with full platform control and analytics

This commit is contained in:
Celes Renata
2026-04-11 16:19:46 -07:00
parent 25e0e386b7
commit faccb0b8db
53 changed files with 7924 additions and 13 deletions
+12
View File
@@ -0,0 +1,12 @@
-- Saved SQL queries for the analytics explorer
CREATE TABLE IF NOT EXISTS saved_queries (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
name TEXT NOT NULL,
description TEXT,
sql_text TEXT NOT NULL,
created_by TEXT NOT NULL DEFAULT 'operator',
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);
CREATE INDEX IF NOT EXISTS idx_saved_queries_name ON saved_queries (name);