AppFlowy/rust-lib/flowy-database/migrations/2021-09-22-074638_flowy-doc-op/up.sql

8 lines
240 B
MySQL
Raw Normal View History

2021-09-23 05:15:35 +00:00
-- Your SQL goes here
CREATE TABLE op_table (
2021-09-23 07:49:10 +00:00
base_rev_id BIGINT NOT NULL DEFAULT 0,
rev_id BIGINT NOT NULL PRIMARY KEY,
2021-09-23 05:15:35 +00:00
data BLOB NOT NULL DEFAULT (x''),
md5 TEXT NOT NULL DEFAULT '',
state INTEGER NOT NULL DEFAULT 0
);