| Total Complexity | 2 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 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 | } |
||
| 39 |