]> git.mxchange.org Git - friendica.git/blobdiff - static/dbstructure.config.php
First draft for using a image grid to display attached images.
[friendica.git] / static / dbstructure.config.php
index 4f231b4c32f12260b9ed5acfe103e728a0706e1a..f8e01e51eec7e93f139c2b0f5494efbc33be6c4c 100644 (file)
@@ -55,7 +55,7 @@
 use Friendica\Database\DBA;
 
 if (!defined('DB_UPDATE_VERSION')) {
-       define('DB_UPDATE_VERSION', 1493);
+       define('DB_UPDATE_VERSION', 1497);
 }
 
 return [
@@ -115,6 +115,7 @@ return [
                        "language" => ["type" => "varchar(32)", "not null" => "1", "default" => "en", "comment" => "default language"],
                        "register_date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "timestamp of registration"],
                        "login_date" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "timestamp of last login"],
+                       "last-activity" => ["type" => "date", "comment" => "Day of the last activity"],
                        "default-location" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "Default for item.location"],
                        "allow_location" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 allows to display the location"],
                        "theme" => ["type" => "varchar(255)", "not null" => "1", "default" => "", "comment" => "user theme preference"],
@@ -371,6 +372,18 @@ return [
                        "uid" => ["uid"],
                ]
        ],
+       "account-suggestion" => [
+               "comment" => "Account suggestion",
+               "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 account url"],
+                       "uid" => ["type" => "mediumint unsigned", "not null" => "1", "primary" => "1", "foreign" => ["user" => "uid"], "comment" => "User ID"],
+                       "level" => ["type" => "smallint unsigned", "comment" => "level of closeness"],
+                       "ignore" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "If set, this account will not be suggested again"],                ],
+               "indexes" => [
+                       "PRIMARY" => ["uid", "uri-id"],
+                       "uri-id_uid" => ["uri-id", "uid"],
+               ]
+       ],
        "account-user" => [
                "comment" => "Remote and local accounts",
                "fields" => [
@@ -1116,6 +1129,7 @@ return [
                        "height" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
                        "width" => ["type" => "smallint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
                        "datasize" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => ""],
+                       "blurhash" => ["type" => "varbinary(255)", "comment" => "BlurHash representation of the photo"],
                        "data" => ["type" => "mediumblob", "not null" => "1", "comment" => ""],
                        "scale" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => ""],
                        "profile" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => ""],
@@ -1327,6 +1341,7 @@ return [
                        "height" => ["type" => "smallint unsigned", "comment" => "Height of the media"],
                        "width" => ["type" => "smallint unsigned", "comment" => "Width of the media"],
                        "size" => ["type" => "bigint unsigned", "comment" => "Media size"],
+                       "blurhash" => ["type" => "varbinary(255)", "comment" => "BlurHash representation of the image"],
                        "preview" => ["type" => "varbinary(512)", "comment" => "Preview URL"],
                        "preview-height" => ["type" => "smallint unsigned", "comment" => "Height of the preview picture"],
                        "preview-width" => ["type" => "smallint unsigned", "comment" => "Width of the preview picture"],
@@ -1658,6 +1673,7 @@ return [
                        "comment" => ["type" => "text", "comment" => "Report"],
                        "forward" => ["type" => "boolean", "comment" => "Forward the report to the remote server"],
                        "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => ""],
+                       "status" => ["type" => "tinyint unsigned", "comment" => "Status of the report"],
                ],
                "indexes" => [
                        "PRIMARY" => ["id"],
@@ -1670,6 +1686,7 @@ return [
                "fields" => [
                        "rid" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["report" => "id"], "comment" => "Report id"],
                        "uri-id" => ["type" => "int unsigned", "not null" => "1", "primary" => "1", "foreign" => ["item-uri" => "id"], "comment" => "Uri-id of the reported post"],
+                       "status" => ["type" => "tinyint unsigned", "comment" => "Status of the reported post"],
                ],
                "indexes" => [
                        "PRIMARY" => ["rid", "uri-id"],