Skip to content

Commit

Permalink
Rollback to 7c8d3d0
Browse files Browse the repository at this point in the history
Put the payload column of jobs table to the end of insert statements.
  • Loading branch information
gabomasi committed Dec 6, 2017
1 parent 8bbbf4c commit 56ba5cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Queue/DatabaseQueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ protected function buildDatabaseRecord($queue, $payload, $availableAt, $attempts
'reserved_at' => null,
'available_at' => $availableAt,
'created_at' => $this->currentTime(),
'payload' => $payload,
'payload' => $payload,
];
}

Expand Down

0 comments on commit 56ba5cc

Please sign in to comment.