1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 12:24:04 +00:00

6.x support

This commit is contained in:
Samuel Štancl 2021-12-31 18:19:53 +01:00
parent 73a4a3018c
commit 49ef28da05

View file

@ -57,7 +57,7 @@ class QueueTest extends TestCase
protected function withFailedJobs() protected function withFailedJobs()
{ {
Schema::connection('central')->create('failed_jobs', function (Blueprint $table) { Schema::connection('central')->create('failed_jobs', function (Blueprint $table) {
$table->id(); $table->increments('id');
$table->string('uuid')->unique(); $table->string('uuid')->unique();
$table->text('connection'); $table->text('connection');
$table->text('queue'); $table->text('queue');