mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-13 12:06:03 +00:00
8 lines
253 B
MySQL
8 lines
253 B
MySQL
![]() |
-- Your SQL goes here
|
||
|
CREATE TABLE collab_snapshot (
|
||
|
id TEXT NOT NULL PRIMARY KEY DEFAULT '',
|
||
|
object_id TEXT NOT NULL DEFAULT '',
|
||
|
desc TEXT NOT NULL DEFAULT '',
|
||
|
timestamp BIGINT NOT NULL DEFAULT 0,
|
||
|
data BLOB NOT NULL DEFAULT (x'')
|
||
|
);
|