From: Hypolite Petovan <hypolite@mrpetovan.com>
Date: Sun, 22 Mar 2020 14:04:30 +0000 (-0400)
Subject: Remove extraneous relation on item-activity.id
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f50a39d19daeeed6c13ec59a529368baa9a31c85;p=friendica.git

Remove extraneous relation on item-activity.id
---

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"],