ipld-eth-db/db/migrations/00010_create_eth_state_accounts_table.sql

16 lines
586 B
MySQL
Raw Normal View History

2021-08-29 18:55:44 +00:00
-- +goose Up
CREATE TABLE eth.state_accounts (
block_number BIGINT NOT NULL,
2021-11-15 00:06:02 +00:00
header_id VARCHAR(66) NOT NULL,
state_path BYTEA NOT NULL,
2021-11-24 23:49:55 +00:00
balance NUMERIC NOT NULL,
nonce BIGINT NOT NULL,
2021-11-15 00:06:02 +00:00
code_hash BYTEA NOT NULL,
storage_root VARCHAR(66) NOT NULL,
FOREIGN KEY (header_id, state_path) REFERENCES eth.state_cids (header_id, state_path) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
PRIMARY KEY (header_id, state_path)
2021-08-29 18:55:44 +00:00
);
-- +goose Down
2021-11-15 00:06:02 +00:00
DROP TABLE eth.state_accounts;