github.com/status-im/status-go@v1.1.0/protocol/migrations/sqlite/1708423707_applied_community_events.up.sql (about)

     1  CREATE TABLE applied_community_events (
     2      community_id TEXT NOT NULL,
     3      event_type_id TEXT DEFAULT NULL,
     4      clock INT NOT NULL,
     5      PRIMARY KEY (community_id, event_type_id) ON CONFLICT REPLACE
     6  );