From: Michael Date: Sun, 30 Apr 2017 20:19:47 +0000 (+0000) Subject: Add a missing relation X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f1c53530a13ca73281f5dc1dd51ac1319f138e81;p=friendica.git Add a missing relation --- diff --git a/include/dbstructure.php b/include/dbstructure.php index cedef40d98..25109b5f40 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -1069,7 +1069,7 @@ function db_definition() { ); $database["item"] = array( "fields" => array( - "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1"), + "id" => array("type" => "int(10) unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "relation" => array("thread" => "iid")), "guid" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "uri" => array("type" => "varchar(255)", "not null" => "1", "default" => ""), "uid" => array("type" => "int(10) unsigned", "not null" => "1", "default" => "0", "relation" => array("user" => "uid")),