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

     1  CREATE TABLE IF NOT EXISTS communities_events (
     2    id BLOB NOT NULL PRIMARY KEY ON CONFLICT REPLACE,
     3    raw_events BLOB NOT NULL,
     4    raw_description BLOB NOT NULL
     5    );