mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-10-29 00:51:24 +00:00
9 lines
306 B
MySQL
9 lines
306 B
MySQL
|
|
-- Your SQL goes here
|
||
|
|
CREATE TABLE folder_rev_snapshot (
|
||
|
|
snapshot_id TEXT NOT NULL PRIMARY KEY DEFAULT '',
|
||
|
|
object_id TEXT NOT NULL DEFAULT '',
|
||
|
|
rev_id BIGINT NOT NULL DEFAULT 0,
|
||
|
|
base_rev_id BIGINT NOT NULL DEFAULT 0,
|
||
|
|
timestamp BIGINT NOT NULL DEFAULT 0,
|
||
|
|
data BLOB NOT NULL DEFAULT (x'')
|
||
|
|
);
|