status-im/status-go

View on GitHub
protocol/migrations/sqlite/1707749393_add_community_grants.up.sql

Summary

Maintainability
Test Coverage
CREATE TABLE IF NOT EXISTS community_grants (
  community_id TEXT PRIMARY KEY NOT NULL,
  grant TEXT DEFAULT "",
  clock INT NOT NULL DEFAULT 0
);