github.com/status-im/status-go@v1.1.0/walletdatabase/migrations/sql/1698257443_add_community_metadata_to_wallet_db.up.sql (about)

     1  -- Only populated if communty_id is not empty
     2  ALTER TABLE collectible_data_cache ADD COLUMN community_privileges_level UNSIGNED INT;
     3  
     4  -- Holds community  metadata
     5  CREATE TABLE IF NOT EXISTS community_data_cache (
     6      id TEXT PRIMARY KEY NOT NULL,
     7      name TEXT NOT NULL,
     8      color TEXT NOT NULL,
     9      image TEXT NOT NULL
    10  );