mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-08 03:51:22 +00:00
6 lines
140 B
MySQL
6 lines
140 B
MySQL
|
CREATE TABLE active_config (
|
||
|
id integer PRIMARY KEY CHECK (id=1),
|
||
|
config_name text NOT NULL,
|
||
|
slots_per_epoch integer NOT NULL
|
||
|
)
|