mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-09 04:21:22 +00:00
7 lines
211 B
MySQL
7 lines
211 B
MySQL
|
CREATE TABLE block_packing (
|
||
|
slot integer PRIMARY KEY REFERENCES beacon_blocks(slot) ON DELETE CASCADE,
|
||
|
available integer NOT NULL,
|
||
|
included integer NOT NULL,
|
||
|
prior_skip_slots integer NOT NULL
|
||
|
)
|