feat(core): basic implementation of remote workspace support (#15120)
This commit is contained in:
parent
a94f564ff0
commit
c12ce2ffff
26 changed files with 2153 additions and 65 deletions
|
|
@ -0,0 +1,7 @@
|
|||
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
|
||||
);
|
||||
1009
packages/opencode/migration/20260225215848_workspace/snapshot.json
Normal file
1009
packages/opencode/migration/20260225215848_workspace/snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue