Add prompts category

This commit is contained in:
MartinBraquet
2025-11-25 15:03:34 +01:00
parent 95bdc37411
commit a4e02031c6

View File

@@ -2,6 +2,7 @@ CREATE TABLE IF NOT EXISTS compatibility_prompts (
answer_type TEXT DEFAULT 'free_response' NOT NULL,
created_time TIMESTAMPTZ DEFAULT now() NOT NULL,
creator_id TEXT,
category TEXT,
id BIGINT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
importance_score NUMERIC DEFAULT 0 NOT NULL,
multiple_choice_options JSONB,