mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
134137f9c5
* feat: a mechanism to retrieve shard information for a given community ID
6 lines
208 B
SQL
6 lines
208 B
SQL
CREATE TABLE IF NOT EXISTS communities_shards (
|
|
community_id BLOB NOT NULL PRIMARY KEY ON CONFLICT REPLACE,
|
|
shard_cluster INT DEFAULT NULL,
|
|
shard_index INT DEFAULT NULL,
|
|
clock INT DEFAULT 0
|
|
); |