mirror of
https://github.com/langgenius/dify.git
synced 2026-09-02 14:25:35 +08:00
8 lines
296 B
SQL
8 lines
296 B
SQL
-- Knowledge Platform schema migration
|
|
-- Migration id: 0033_research_task_final_answers
|
|
-- Dialect: postgres
|
|
-- Research retrieval evidence and its final LLM synthesis are returned from the same durable row.
|
|
|
|
ALTER TABLE "research_task_partial_results"
|
|
ADD COLUMN IF NOT EXISTS "answer" TEXT;
|