github.com/status-im/status-go@v1.1.0/walletdatabase/migrations/sql/1702867707_add_balance_to_collectibles_ownership_cache.up.sql (about) 1 ALTER TABLE collectibles_ownership_cache ADD COLUMN balance BLOB NOT NULL DEFAULT x'01'; 2 3 UPDATE collectibles_ownership_cache SET balance = x'01'; 4 5 CREATE INDEX IF NOT EXISTS collectibles_ownership_filter_collectible ON collectibles_ownership_cache (chain_id, contract_address, token_id);