Roy Crihfield
fdd56e9803
All checks were successful
Publish Docker image / Build and publish image (release) Successful in 29s
Support for validator withdrawal objects: - new table `eth.withdrawal_cids` - new column `withdrawals_root` in `eth.header_cids` Reviewed-on: #7
17 lines
550 B
SQL
17 lines
550 B
SQL
-- +goose Up
|
|
CREATE TABLE IF NOT EXISTS eth.withdrawal_cids (
|
|
block_number BIGINT NOT NULL,
|
|
header_id VARCHAR(66) NOT NULL,
|
|
cid TEXT NOT NULL,
|
|
index INTEGER NOT NULL,
|
|
validator INTEGER NOT NULL,
|
|
address VARCHAR(66) NOT NULL,
|
|
amount NUMERIC NOT NULL,
|
|
PRIMARY KEY (index, header_id, block_number)
|
|
);
|
|
|
|
SELECT create_hypertable('eth.withdrawal_cids', 'block_number', migrate_data => true, chunk_time_interval => 32768);
|
|
|
|
-- +goose Down
|
|
DROP TABLE eth.withdrawal_cids;
|