mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-25 18:06:00 +00:00
7 lines
206 B
MySQL
7 lines
206 B
MySQL
![]() |
-- Your SQL goes here
|
||
|
CREATE TABLE af_collab_metadata (
|
||
|
object_id TEXT PRIMARY KEY NOT NULL,
|
||
|
updated_at BIGINT NOT NULL,
|
||
|
prev_sync_state_vector BLOB NOT NULL,
|
||
|
collab_type INTEGER NOT NULL
|
||
|
);
|