AppFlowy/rust-lib/flowy-database/migrations/2021-07-22-234458_flowy-editor/up.sql

6 lines
160 B
MySQL
Raw Normal View History

2021-07-23 00:14:45 +00:00
-- Your SQL goes here
CREATE TABLE doc_table (
id TEXT NOT NULL PRIMARY KEY,
2021-09-14 08:22:44 +00:00
data BLOB NOT NULL DEFAULT (x''),
revision BIGINT NOT NULL DEFAULT 0
2021-07-23 00:14:45 +00:00
);