github.com/status-im/status-go@v1.1.0/walletdatabase/migrations/sql/1721306883_add_connector_dapps.up.sql (about) 1 -- connector_dapps table keeps track of connected dApps to provide a link to their individual sessions 2 -- should be aligned with wallet_connect_dapps table 3 4 CREATE TABLE IF NOT EXISTS connector_dapps ( 5 url TEXT PRIMARY KEY, 6 name TEXT NOT NULL, 7 shared_account TEXT NOT NULL, 8 chain_id UNSIGNED BIGINT NOT NULL, 9 icon_url TEXT 10 ) WITHOUT ROWID;