lotus/lib/harmony/harmonydb/sql/20230823.sql
Shrenuj Bansal f01096bca3 wip
2023-10-05 11:52:22 -04:00

24 lines
747 B
SQL

create table wdpost_tasks
(
task_id int not null
constraint wdpost_tasks_pkey
primary key,
tskey bytea not null,
current_epoch bigint not null,
period_start bigint not null,
index bigint not null
constraint wdpost_tasks_index_key
unique,
open bigint not null,
close bigint not null,
challenge bigint not null,
fault_cutoff bigint,
wpost_period_deadlines bigint,
wpost_proving_period bigint,
wpost_challenge_window bigint,
wpost_challenge_lookback bigint,
fault_declaration_cutoff bigint
);