mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
94c7cd32af
By default OnDemandFetchStategy is still used. Updates #10246
9 lines
263 B
SQL
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;
|