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
|
||
|
)
|