feat(core): basic implementation of remote workspace support (#15120)

This commit is contained in:
James Long 2026-02-27 15:36:39 -05:00 committed by GitHub
commit c12ce2ffff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 2153 additions and 65 deletions

View file

@ -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
);

File diff suppressed because it is too large Load diff