mirror of https://github.com/buster-so/buster.git
3 lines
860 B
SQL
3 lines
860 B
SQL
CREATE TYPE "public"."message_analysis_mode_enum" AS ENUM('auto', 'standard', 'investigation');--> statement-breakpoint
|
|
ALTER TABLE "users" ALTER COLUMN "suggested_prompts" SET DEFAULT '{"suggestedPrompts":{"report":["provide a trend analysis of quarterly profits","evaluate product performance across regions"],"dashboard":["create a sales performance dashboard","design a revenue forecast dashboard"],"visualization":["create a metric for monthly sales","show top vendors by purchase volume"],"help":["what types of analyses can you perform?","what questions can I as buster?","what data models are available for queries?","can you explain your forecasting capabilities?"]},"updatedAt":"2025-09-11T14:33:15.846Z"}'::jsonb;--> statement-breakpoint
|
|
ALTER TABLE "messages" ADD COLUMN "message_analysis_mode" "message_analysis_mode_enum" DEFAULT 'auto' NOT NULL; |