Skip to content

Commit c12ce2f

Browse files
authored
feat(core): basic implementation of remote workspace support (anomalyco#15120)
1 parent a94f564 commit c12ce2f

File tree

26 files changed

+2153
-65
lines changed

26 files changed

+2153
-65
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CREATE TABLE `workspace` (
2+
`id` text PRIMARY KEY,
3+
`branch` text,
4+
`project_id` text NOT NULL,
5+
`config` text NOT NULL,
6+
CONSTRAINT `fk_workspace_project_id_project_id_fk` FOREIGN KEY (`project_id`) REFERENCES `project`(`id`) ON DELETE CASCADE
7+
);

0 commit comments

Comments
 (0)