feat: wdpost: Declare-recovered task

This commit is contained in:
Łukasz Magiera
2023-11-09 17:24:37 +01:00
parent 23ba7faa84
commit 3f100a45c8
4 changed files with 381 additions and 41 deletions
+13
View File
@@ -33,3 +33,16 @@ create table wdpost_proofs
constraint wdpost_proofs_identity_key
unique (sp_id, proving_period_start, deadline, partition)
);
create table wdpost_recovery_tasks
(
task_id bigint not null
constraint wdpost_partition_tasks_pk
primary key,
sp_id bigint not null,
proving_period_start bigint not null,
deadline_index bigint not null,
partition_index bigint not null,
constraint wdpost_partition_tasks_identity_key
unique (sp_id, proving_period_start, deadline_index, partition_index)
);