mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-10-28 08:32:44 +00:00
8 lines
265 B
MySQL
8 lines
265 B
MySQL
|
|
-- Your SQL goes here
|
||
|
|
CREATE TABLE rev_history (
|
||
|
|
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||
|
|
object_id TEXT NOT NULL DEFAULT '',
|
||
|
|
start_rev_id BIGINT NOT NULL DEFAULT 0,
|
||
|
|
end_rev_id BIGINT NOT NULL DEFAULT 0,
|
||
|
|
data BLOB NOT NULL DEFAULT (x'')
|
||
|
|
);
|