status-im/status-go

View on GitHub
protocol/migrations/sqlite/1708423707_applied_community_events.up.sql

Summary

Maintainability
Test Coverage
CREATE TABLE applied_community_events (
    community_id TEXT NOT NULL,
    event_type_id TEXT DEFAULT NULL,
    clock INT NOT NULL,
    PRIMARY KEY (community_id, event_type_id) ON CONFLICT REPLACE
);