Initial public release of Warp.

Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
David Stern
2026-04-28 08:43:33 -05:00
commit 0dbd3d567a
4982 changed files with 1431549 additions and 0 deletions
@@ -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)
);