]> git.mxchange.org Git - friendica.git/commitdiff
Changed type from varbinary (Adminer and Co. do HEX() calls around those
authorRoland Häder <roland@mxchange.org>
Tue, 1 Dec 2020 21:55:05 +0000 (22:55 +0100)
committerRoland Häder <roland@mxchange.org>
Wed, 17 Jan 2024 00:02:58 +0000 (01:02 +0100)
columns) to varchar.

Signed-off-by: Roland Häder <roland@mxchange.org>
static/dbstructure.config.php

index aa5c3f982fa26c17d1b5d93526b0ffbb20546f4b..53eab46aedd16c6d3885be2942380811e3281325 100644 (file)
@@ -539,7 +539,7 @@ return [
        "cache" => [
                "comment" => "Stores temporary data",
                "fields" => [
-                       "k" => ["type" => "varbinary(255)", "not null" => "1", "primary" => "1", "comment" => "cache key"],
+                       "k" => ["type" => "varchar(255)", "not null" => "1", "primary" => "1", "comment" => "cache key"],
                        "v" => ["type" => "mediumtext", "comment" => "cached serialized value"],
                        "expires" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of cache expiration"],
                        "updated" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "datetime of cache insertion"],