mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 05:43:55 +00:00
8 lines
248 B
SQL
8 lines
248 B
SQL
CREATE TABLE `workspace` (
|
|
`id` text PRIMARY KEY,
|
|
`branch` text,
|
|
`project_id` text NOT NULL,
|
|
`config` text NOT NULL,
|
|
CONSTRAINT `fk_workspace_project_id_project_id_fk` FOREIGN KEY (`project_id`) REFERENCES `project`(`id`) ON DELETE CASCADE
|
|
);
|