Rebase fix + Started writing the real SQL we're going to need
This commit is contained in:
parent
e5c6393f85
commit
500ecbf915
8 changed files with 109 additions and 81 deletions
|
@ -28,6 +28,13 @@ CREATE TABLE pane_items(
|
|||
index INTEGER,
|
||||
KEY (workspace_id, pane_id)
|
||||
) STRICT;
|
||||
|
||||
ALTER TABLE WORKSPACE
|
||||
ADD THESE COLS:
|
||||
center_group INTEGER NOT NULL,
|
||||
dock_pane INTEGER NOT NULL,
|
||||
-- FOREIGN KEY(center_group) REFERENCES pane_groups(group_id)
|
||||
-- FOREIGN KEY(dock_pane) REFERENCES pane_items(pane_id)
|
||||
";
|
||||
|
||||
#[derive(Debug, PartialEq, Eq, Copy, Clone)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue