Initial public release of Warp.
Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
ALTER TABLE notebooks DROP COLUMN title;
|
||||
|
||||
DROP TABLE IF EXISTS notebook_blocks;
|
||||
@@ -0,0 +1,9 @@
|
||||
ALTER TABLE notebooks ADD title TEXT;
|
||||
|
||||
CREATE TABLE notebook_blocks (
|
||||
id INTEGER NOT NULL PRIMARY KEY,
|
||||
notebook_id INTEGER NOT NULL,
|
||||
is_documentation BOOLEAN NOT NULL,
|
||||
data TEXT NOT NULL,
|
||||
FOREIGN KEY(notebook_id) REFERENCES notebooks(id)
|
||||
);
|
||||
Reference in New Issue
Block a user