Skip to content

Commit

Permalink
Removed unnecessary escape characters in QueueService
Browse files Browse the repository at this point in the history
Co-authored-by: Matthias Schuhmayer <[email protected]>
  • Loading branch information
root913 and mattamon authored Aug 22, 2024
1 parent 4930817 commit 59fdbcc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Queue/QueueService.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 59fdbcc

Please sign in to comment.