X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=config%2Fdbstructure.config.php;h=dcacce811efbe94ca69b2851e1b824bda90781e3;hb=8d84f33f15447e30e61d1266e378bbf6b092b4be;hp=a4728c15d1f4d0d7eeeabcca350e14bbe688de0a;hpb=fc2b804cccadcd2e9f90953f02b5977b2eb46439;p=friendica.git diff --git a/config/dbstructure.config.php b/config/dbstructure.config.php index a4728c15d1..dcacce811e 100644 --- a/config/dbstructure.config.php +++ b/config/dbstructure.config.php @@ -34,7 +34,7 @@ use Friendica\Database\DBA; if (!defined('DB_UPDATE_VERSION')) { - define('DB_UPDATE_VERSION', 1299); + define('DB_UPDATE_VERSION', 1300); } return [ @@ -1365,7 +1365,7 @@ return [ "comment" => "Background tasks queue entries", "fields" => [ "id" => ["type" => "int unsigned", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented worker task id"], - "parameter" => ["type" => "mediumblob", "comment" => "Task command"], + "parameter" => ["type" => "mediumtext", "comment" => "Task command"], "priority" => ["type" => "tinyint unsigned", "not null" => "1", "default" => "0", "comment" => "Task priority"], "created" => ["type" => "datetime", "not null" => "1", "default" => DBA::NULL_DATETIME, "comment" => "Creation date"], "pid" => ["type" => "int unsigned", "not null" => "1", "default" => "0", "comment" => "Process id of the worker"],