blob: 311531901f59427497a5a934e3f382493648f947 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateQueueMonitorTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create(config('queue-monitor.table'), function (Blueprint $table) {
$table->increments('id');
$table->string('job_id')->index();
$table->string('name')->nullable();
$table->string('queue')->nullable();
$table->timestamp('started_at')->nullable()->index();
$table->string('started_at_exact')->nullable();
$table->timestamp('finished_at')->nullable();
$table->string('finished_at_exact')->nullable();
$table->float('time_elapsed', 12, 6)->nullable()->index();
$table->boolean('failed')->default(false)->index();
$table->integer('attempt')->default(0);
$table->integer('progress')->nullable();
$table->longText('exception')->nullable();
$table->text('exception_message')->nullable();
$table->text('exception_class')->nullable();
$table->longText('data')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop(config('queue-monitor.table'));
}
}
|