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

     1  CREATE TABLE IF NOT EXISTS collectibles_ownership_update_timestamps (
     2      owner_address VARCHAR NOT NULL,
     3      chain_id UNSIGNED BIGINT NOT NULL,
     4      timestamp UNSIGNED BIGINT NOT NULL
     5  );
     6  
     7  CREATE UNIQUE INDEX IF NOT EXISTS collectibles_ownership_update_timestamps_identify_entry ON collectibles_ownership_update_timestamps (owner_address, chain_id);