From: Roland Häder Date: Tue, 1 Dec 2020 21:55:05 +0000 (+0100) Subject: Changed type from varbinary (Adminer and Co. do HEX() calls around those X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b54710cecbf3d2373f49a27361a7b6c5a157272b;p=friendica.git Changed type from varbinary (Adminer and Co. do HEX() calls around those columns) to varchar. Signed-off-by: Roland Häder --- 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"],