AppFlowy/rust-lib/flowy-database/migrations/2021-07-22-234458_flowy-editor/up.sql
2021-09-22 23:21:44 +08:00

6 lines
160 B
SQL

-- Your SQL goes here
CREATE TABLE doc_table (
id TEXT NOT NULL PRIMARY KEY,
data BLOB NOT NULL DEFAULT (x''),
revision BIGINT NOT NULL DEFAULT 0
);