Initial public release of Warp.
Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
+6
@@ -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
|
||||
);
|
||||
Reference in New Issue
Block a user