docs: Day 12-13 completion summary and milestone update

This commit is contained in:
AI Clinical Dev Team
2025-10-10 20:33:18 +08:00
parent 702e42febb
commit 8afff23995
17 changed files with 2331 additions and 45 deletions

View File

@@ -0,0 +1,24 @@
/*
Warnings:
- You are about to drop the column `description` on the `projects` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE "conversations" ADD COLUMN "deleted_at" TIMESTAMP(3),
ADD COLUMN "metadata" JSONB;
-- AlterTable
ALTER TABLE "messages" ADD COLUMN "model" TEXT;
-- AlterTable
ALTER TABLE "projects" DROP COLUMN "description",
ADD COLUMN "background" TEXT NOT NULL DEFAULT '',
ADD COLUMN "deleted_at" TIMESTAMP(3),
ADD COLUMN "research_type" TEXT NOT NULL DEFAULT 'observational';
-- CreateIndex
CREATE INDEX "conversations_deleted_at_idx" ON "conversations"("deleted_at");
-- CreateIndex
CREATE INDEX "projects_deleted_at_idx" ON "projects"("deleted_at");