mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-08 20:11:22 +00:00
7 lines
222 B
MySQL
7 lines
222 B
MySQL
|
CREATE TABLE block_rewards (
|
||
|
slot integer PRIMARY KEY REFERENCES beacon_blocks(slot) ON DELETE CASCADE,
|
||
|
total integer NOT NULL,
|
||
|
attestation_reward integer NOT NULL,
|
||
|
sync_committee_reward integer NOT NULL
|
||
|
)
|