mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-08 17:47:11 +00:00

* chore: add custom folder prompt * chore: zip collab db * chore: fix test * chore: add test * chore: fmt * chore: fmt * chore: fmt
7 lines
168 B
SQL
7 lines
168 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE rocksdb_backup (
|
|
object_id TEXT NOT NULL PRIMARY KEY,
|
|
timestamp BIGINT NOT NULL DEFAULT 0,
|
|
data BLOB NOT NULL DEFAULT (x'')
|
|
);
|