]> 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>
Mon, 23 Jun 2025 20:53:13 +0000 (22:53 +0200)
columns) to varchar.

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

index c63fdb3af2d8d21bcbc8c487ac96290ab16aea8d..70af5da47b65c73694d6525132a0e4e491591b50 100644 (file)
@@ -531,7 +531,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"],