]> git.mxchange.org Git - friendica.git/blobdiff - static/dbstructure.config.php
DI is now removed
[friendica.git] / static / dbstructure.config.php
index 7520a11092f8e17c72b60c212497e17d6aa7c206..2f654e363948f76cd2e99de97879c2968e9e624e 100644 (file)
@@ -56,7 +56,7 @@ use Friendica\Database\DBA;
 
 // This file is required several times during the test in DbaDefinition which justifies this condition
 if (!defined('DB_UPDATE_VERSION')) {
-       define('DB_UPDATE_VERSION', 1530);
+       define('DB_UPDATE_VERSION', 1531);
 }
 
 return [
@@ -162,8 +162,8 @@ return [
        "user-gserver" => [
                "comment" => "User settings about remote servers",
                "fields" => [
-                       "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "comment" => "Owner User id"],
-                       "gsid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["gserver" => "id"], "comment" => "Gserver id"],
+                       "uid" => ["type" => "mediumint unsigned", "not null" => "1", "default" => "0", "foreign" => ["user" => "uid"], "primary" => "1", "comment" => "Owner User id"],
+                       "gsid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["gserver" => "id"], "primary" => "1", "comment" => "Gserver id"],
                        "ignored" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "server accounts are ignored for the user"],
                ],
                "indexes" => [
@@ -1323,6 +1323,23 @@ return [
                        "PRIMARY" => ["uri-id"],
                ]
        ],
+       "post-engagement" => [
+               "comment" => "Engagement data per post",
+               "fields" => [
+                       "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1",  "foreign" => ["item-uri" => "id"], "comment" => "Id of the item-uri table entry that contains the item uri"],
+                       "owner-id" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "foreign" => ["contact" => "id", "on delete" => "restrict"], "comment" => "Item owner"],
+                       "contact-type" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Person, organisation, news, community, relay"],
+                       "media-type" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Type of media in a bit array (1 = image, 2 = video, 4 = audio"],
+                       "created" => ["type" => "datetime", "comment" => ""],
+                       "comments" => ["type" => "mediumint unsigned", "comment" => "Number of comments"],
+                       "activities" => ["type" => "mediumint unsigned", "comment" => "Number of activities (like, dislike, ...)"],
+               ],
+               "indexes" => [
+                       "PRIMARY" => ["uri-id"],
+                       "owner-id" => ["owner-id"],
+                       "created" => ["created"],
+               ]
+       ],
        "post-history" => [
                "comment" => "Post history",
                "fields" => [