Correctly handle multi parent blocks

This commit is contained in:
Łukasz Magiera 2020-01-14 06:17:31 +01:00
parent a1e2a4452c
commit 14128819de

View File

@ -53,9 +53,7 @@ create unique index if not exists blocks_synced_cid_uindex
create table if not exists block_parents
(
block text not null
constraint block_parents_pk
primary key,
block text not null,
parent text not null
);