From: Hypolite Petovan Date: Sun, 22 Mar 2020 14:28:13 +0000 (-0400) Subject: Remove extraneous relation on item-content.id X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f2638ca65befaee29e2807c5c22b7f0c75e9f971;p=friendica.git Remove extraneous relation on item-content.id --- 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"],