mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-30 20:40:53 +00:00

* chore: rename flowy-database to flowy-sqlite * refactor: rename flowy-grid to flowy-database * refactor: rename grid to database * refactor: rename GridEvent to DatabaseEvent * refactor: rename grid_id to database_id * refactor: rename dart code
9 lines
306 B
SQL
9 lines
306 B
SQL
-- 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'')
|
|
); |