-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: add task to a list while beautifying the task
- Loading branch information
Showing
19 changed files
with
309 additions
and
178 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
apps/server/prisma/migrations/20250307060553_add_agent_worklog/migration.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
-- AlterEnum | ||
ALTER TYPE "ModelName" ADD VALUE 'AgentWorklog'; | ||
|
||
-- CreateTable | ||
CREATE TABLE "AgentWorklog" ( | ||
"id" TEXT NOT NULL, | ||
"createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
"updatedAt" TIMESTAMP(3) NOT NULL, | ||
"deleted" TIMESTAMP(3), | ||
"modelName" TEXT NOT NULL, | ||
"modelId" TEXT NOT NULL, | ||
"state" TEXT NOT NULL, | ||
"type" TEXT NOT NULL, | ||
|
||
CONSTRAINT "AgentWorklog_pkey" PRIMARY KEY ("id") | ||
); |
11 changes: 11 additions & 0 deletions
11
apps/server/prisma/migrations/20250307075715_add_workspace_in_agent_worklog/migration.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* | ||
Warnings: | ||
- Added the required column `workspaceId` to the `AgentWorklog` table without a default value. This is not possible if the table is not empty. | ||
*/ | ||
-- AlterTable | ||
ALTER TABLE "AgentWorklog" ADD COLUMN "workspaceId" TEXT NOT NULL; | ||
|
||
-- AddForeignKey | ||
ALTER TABLE "AgentWorklog" ADD CONSTRAINT "AgentWorklog_workspaceId_fkey" FOREIGN KEY ("workspaceId") REFERENCES "Workspace"("id") ON DELETE RESTRICT ON UPDATE CASCADE; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.