From 59fdbcc39ba60ddc00d21f864ae24a8e3e330d64 Mon Sep 17 00:00:00 2001 From: Krzysztof <3902450+root913@users.noreply.github.com> Date: Thu, 22 Aug 2024 18:50:12 +0200 Subject: [PATCH] Removed unnecessary escape characters in QueueService Co-authored-by: Matthias Schuhmayer <38959016+mattamon@users.noreply.github.com> --- src/Queue/QueueService.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Queue/QueueService.php b/src/Queue/QueueService.php index 59a3edab..0dfdc5f8 100644 --- a/src/Queue/QueueService.php +++ b/src/Queue/QueueService.php @@ -87,7 +87,8 @@ protected function createQueueTableIfNotExisting(\Closure $callable = null) $this->getDb()->executeQuery(sprintf('CREATE TABLE IF NOT EXISTS %s ( id bigint AUTO_INCREMENT, timestamp bigint NULL, - userOwner int unsigned NOT NULL DEFAULT \'0\', + userOwner int unsigned NOT NULL DEFAULT 0, + configName varchar(80) NULL, `data` TEXT null, executionType varchar(20) NULL,