Passed
Push — dependabot/npm_and_yarn/string... ( b56eb5...bc569b )
by
unknown
45:46 queued 33s
created

CreateJobsTable   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 19
dl 0
loc 30
rs 10
c 0
b 0
f 0
wmc 2
1
<?php
2
3
use Illuminate\Support\Facades\Schema;
4
use Illuminate\Database\Schema\Blueprint;
5
use Illuminate\Database\Migrations\Migration;
6
7
class CreateJobsTable extends Migration
8
{
9
    public function up()
10
    {
11
        Schema::create('jobs', function (Blueprint $table) {
12
            $table->bigIncrements('id');
13
            $table->string('queue');
14
            $table->longText('payload');
15
            $table->tinyInteger('attempts')->unsigned();
16
            $table->unsignedInteger('reserved_at')->nullable();
17
            $table->unsignedInteger('available_at');
18
            $table->unsignedInteger('created_at');
19
20
            $table->index(['queue', 'reserved_at']);
21
        });
22
23
        Schema::create('failed_jobs', function (Blueprint $table) {
24
            $table->bigIncrements('id');
25
            $table->text('connection');
26
            $table->text('queue');
27
            $table->longText('payload');
28
            $table->longText('exception');
29
            $table->timestamp('failed_at')->useCurrent();
30
        });
31
    }
32
33
    public function down()
34
    {
35
        Schema::dropIfExists('jobs');
36
        Schema::dropIfExists('failed_jobs');
37
    }
38
}
39