From 3e6451f41f35c6004affa5e89cdb3cb0f10d6ceb Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 11 May 2020 05:48:24 +0000 Subject: [PATCH] removed foreign key to avoid update errors --- 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 833d809e72..364e2a83c7 100755 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -936,7 +936,7 @@ return [ "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "sequential ID"], "notify-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["notify" => "id"], "comment" => ""], "master-parent-item" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "relation" => ["item" => "id"], "comment" => ""], - "master-parent-uri-id" => ["type" => "int unsigned", "foreign" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"], + "master-parent-uri-id" => ["type" => "int unsigned", "relation" => ["item-uri" => "id"], "comment" => "Item-uri id of the parent of the related post"], "parent-item" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""], "receiver-uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "relation" => ["user" => "uid"], "comment" => "User id"],