status-im/status-go

View on GitHub
walletdatabase/migrations/sql/1695133989_add_community_id_to_collectibles_and_collections_data_cache.up.sql

Summary

Maintainability
Test Coverage
ALTER TABLE collectible_data_cache ADD COLUMN community_id TEXT NOT NULL DEFAULT "";
UPDATE collectible_data_cache SET community_id = "";

ALTER TABLE collection_data_cache ADD COLUMN community_id TEXT NOT NULL DEFAULT "";
UPDATE collection_data_cache SET community_id = "";