From f50a39d19daeeed6c13ec59a529368baa9a31c85 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 22 Mar 2020 10:04:30 -0400 Subject: [PATCH] Remove extraneous relation on item-activity.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 7c400a8925..5afc17eaf6 100755 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -759,7 +759,7 @@ return [ "item-activity" => [ "comment" => "Activities for items", "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-hash" => ["type" => "varchar(80)", "not null" => "1", "default" => "", "comment" => "RIPEMD-128 hash from uri"],