AppFlowy/frontend/rust-lib/flowy-database/migrations/2022-03-04-101530_flowy-grid/up.sql

5 lines
119 B
MySQL
Raw Normal View History

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