]> git.mxchange.org Git - friendica.git/blobdiff - src/Database/DBStructure.php
Some clean up for the worker, arrays are now supported as parameter
[friendica.git] / src / Database / DBStructure.php
index 9c3c0d82a3c259f00a54992a9de27a5df9e08718..9a1c8a2d52c9f6c0bd6186dd6ce60ada336512a3 100644 (file)
@@ -1772,7 +1772,7 @@ class DBStructure
                                "comment" => "Background tasks queue entries",
                                "fields" => [
                                                "id" => ["type" => "int", "not null" => "1", "extra" => "auto_increment", "primary" => "1", "comment" => "Auto incremented worker task id"],
-                                               "parameter" => ["type" => "mediumtext", "comment" => "Task command"],
+                                               "parameter" => ["type" => "mediumblob", "comment" => "Task command"],
                                                "priority" => ["type" => "tinyint", "not null" => "1", "default" => "0", "comment" => "Task priority"],
                                                "created" => ["type" => "datetime", "not null" => "1", "default" => NULL_DATE, "comment" => "Creation date"],
                                                "pid" => ["type" => "int", "not null" => "1", "default" => "0", "comment" => "Process id of the worker"],