mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-05 18:42:20 +00:00
5 lines
136 B
MySQL
5 lines
136 B
MySQL
|
CREATE TABLE blockprint (
|
||
|
slot integer PRIMARY KEY REFERENCES beacon_blocks(slot) ON DELETE CASCADE,
|
||
|
best_guess text NOT NULL
|
||
|
)
|