From b54710cecbf3d2373f49a27361a7b6c5a157272b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 1 Dec 2020 22:55:05 +0100 Subject: [PATCH] Changed type from varbinary (Adminer and Co. do HEX() calls around those columns) to varchar. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- 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 aa5c3f982f..53eab46aed 100644 --- a/static/dbstructure.config.php +++ b/static/dbstructure.config.php @@ -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"], -- 2.39.5