5 lines
119 B
MySQL
Raw Normal View History

2022-03-04 21:26:32 +08:00
-- Your SQL goes here
CREATE TABLE kv_table (
key TEXT NOT NULL PRIMARY KEY,
value BLOB NOT NULL DEFAULT (x'')
);