status-im/status-go

View on GitHub
protocol/migrations/sqlite/1702996953_add_communities_shards_table.up.sql

Summary

Maintainability
Test Coverage
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
);