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,6 @@
DROP TABLE generic_string_objects;
CREATE TABLE json_objects (
id INTEGER NOT NULL PRIMARY KEY,
data TEXT
);
@@ -0,0 +1,7 @@
-- Makes the text field in the json table non-nullable and renames it to make it more generic.
DROP TABLE json_objects;
CREATE TABLE generic_string_objects (
id INTEGER NOT NULL PRIMARY KEY,
data TEXT NOT NULL
);