mirror of
https://github.com/AppFlowy-IO/AppFlowy
synced 2026-05-03 13:38:19 +00:00
* chore: add custom folder prompt * chore: zip collab db * chore: fix test * chore: add test * chore: fmt * chore: fmt * chore: fmt
6 lines
168 B
SQL
6 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'')
|
|
);
|