From f2638ca65befaee29e2807c5c22b7f0c75e9f971 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 22 Mar 2020 10:28:13 -0400 Subject: [PATCH] Remove extraneous relation on item-content.id --- static/dbstructure.config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/dbstructure.config.php b/static/dbstructure.config.php index 5afc17eaf6..707e39468e 100755 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -775,7 +775,7 @@ return [ "item-content" => [ "comment" => "Content for all posts", "fields" => [ - "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "relation" => ["thread" => "iid"]], + "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"], "uri" => ["type" => "varchar(255)", "comment" => ""], "uri-id" => ["type" => "int unsigned", "relation" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"], "uri-plink-hash" => ["type" => "varchar(80)", "not null" => "1", "default" => "", "comment" => "RIPEMD-128 hash from uri"],