mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
8 lines
234 B
SQL
8 lines
234 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE op_table (
|
|
base_rev BIGINT NOT NULL DEFAULT 0,
|
|
rev BIGINT NOT NULL PRIMARY KEY,
|
|
data BLOB NOT NULL DEFAULT (x''),
|
|
md5 TEXT NOT NULL DEFAULT '',
|
|
state INTEGER NOT NULL DEFAULT 0
|
|
); |