status-im/status-go

View on GitHub
protocol/migrations/sqlite/1689266326_create_communities_events_table.up.sql

Summary

Maintainability
Test Coverage
CREATE TABLE IF NOT EXISTS communities_events (
  id BLOB NOT NULL PRIMARY KEY ON CONFLICT REPLACE,
  raw_events BLOB NOT NULL,
  raw_description BLOB NOT NULL
  );