github.com/status-im/status-go@v1.1.0/appdatabase/migrations/sql/1691753758_move_wallet_tables_to_wallet_db.up.sql (about)

     1  DROP TABLE blocks;
     2  DROP TABLE blocks_ranges;
     3  DROP TABLE blocks_ranges_sequential;
     4  DROP TABLE pending_transactions;
     5  DROP TABLE saved_addresses;
     6  -- token_balances is the only table that was placed by mistake in nodeconfig
     7  -- migrations and in tests it is missing if nodeconfig migration is not used.
     8  DROP TABLE IF EXISTS token_balances;
     9  DROP TABLE tokens;
    10  DROP TABLE visible_tokens;
    11  DROP TABLE currency_format_cache;
    12  DROP TABLE multi_transactions;
    13  DROP TABLE balance_history;
    14  DROP TABLE price_cache;
    15  DROP TABLE collectibles_ownership_cache;
    16  DROP TABLE transfers;
    17  
    18  -- All indices are automatically removed