improved UX in dashboard

This commit is contained in:
2026-05-28 11:29:14 +02:00
parent b049a9ab9f
commit 9cf67e765f
8 changed files with 876 additions and 247 deletions

View File

@ -35,6 +35,13 @@ CREATE TABLE IF NOT EXISTS client (
FOREIGN KEY(coachID) REFERENCES coach(coachID)
);
CREATE TABLE IF NOT EXISTS questionnaire_category (
categoryKey TEXT NOT NULL PRIMARY KEY,
label TEXT NOT NULL DEFAULT '',
color TEXT NOT NULL DEFAULT '#64748b',
orderIndex INTEGER NOT NULL DEFAULT 0
);
CREATE TABLE IF NOT EXISTS questionnaire (
questionnaireID TEXT NOT NULL PRIMARY KEY,
name TEXT NOT NULL DEFAULT '',