mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-07 08:26:51 +00:00
10 lines
377 B
SQL
10 lines
377 B
SQL
CREATE TABLE `toolErrors` (
|
|
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
`runId` integer,
|
|
`taskId` integer,
|
|
`toolName` text NOT NULL,
|
|
`error` text NOT NULL,
|
|
`createdAt` integer NOT NULL,
|
|
FOREIGN KEY (`runId`) REFERENCES `runs`(`id`) ON UPDATE no action ON DELETE no action,
|
|
FOREIGN KEY (`taskId`) REFERENCES `tasks`(`id`) ON UPDATE no action ON DELETE no action
|
|
);
|