2
0
mirror of https://github.com/status-im/status-go.git synced 2025-02-20 18:58:14 +00:00
status-go/appdatabase/migrations/sql/1683457503_add_blocks_ranges_sequential_table.up.sql
IvanBelyakoff 94c7cd32af
feat(wallet): Implemented SequentialFetchStrategy for transfers. ()
By default OnDemandFetchStategy is still used.

Updates 
2023-05-19 11:19:48 +03:00

9 lines
263 B
SQL

CREATE TABLE IF NOT EXISTS blocks_ranges_sequential (
network_id UNSIGNED BIGINT NOT NULL,
address VARCHAR NOT NULL,
blk_start BIGINT,
blk_first BIGINT NOT NULL,
blk_last BIGINT NOT NULL,
PRIMARY KEY (network_id, address)
) WITHOUT ROWID;