mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-05 10:32:20 +00:00
8 lines
169 B
MySQL
8 lines
169 B
MySQL
|
CREATE TABLE validators (
|
||
|
index integer PRIMARY KEY,
|
||
|
public_key bytea NOT NULL,
|
||
|
status text NOT NULL,
|
||
|
activation_epoch integer,
|
||
|
exit_epoch integer
|
||
|
)
|