mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-11 18:30:50 +00:00

* chore: snapshot * chore: impl sqlite snapshot * feat: snapshot config * feat: update patch * ci: fix tauri ci * ci: add cache path * chore: save snapshot * chore: update patch * ci: fix s fmt
8 lines
253 B
SQL
8 lines
253 B
SQL
-- 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'')
|
|
); |