From 49ef28da059bb0423f9ccd8f9f88b43cd58cfb34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Fri, 31 Dec 2021 18:19:53 +0100 Subject: [PATCH] 6.x support --- tests/QueueTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/QueueTest.php b/tests/QueueTest.php index 75c727ce..9758c9c8 100644 --- a/tests/QueueTest.php +++ b/tests/QueueTest.php @@ -57,7 +57,7 @@ class QueueTest extends TestCase protected function withFailedJobs() { Schema::connection('central')->create('failed_jobs', function (Blueprint $table) { - $table->id(); + $table->increments('id'); $table->string('uuid')->unique(); $table->text('connection'); $table->text('queue');