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

7 lines
196 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-26 08:39:57 +00:00
-- data BLOB NOT NULL DEFAULT (x''),
data TEXT NOT NULL DEFAULT '',
rev_id BIGINT NOT NULL DEFAULT 0
2021-07-23 00:14:45 +00:00
);