Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create(config('status-check.table_prefix') . 'status_checks', function (Blueprint $table) { |
||
17 | $table->id(); |
||
18 | $table->unsignedBigInteger('group_id'); |
||
19 | $table->string('name'); |
||
20 | $table->longText('results'); |
||
21 | $table->enum('status', [ |
||
22 | 'failed', |
||
23 | 'partial', |
||
24 | 'passed', |
||
25 | ]); |
||
26 | $table->timestamps(); |
||
27 | }); |
||
28 | } |
||
29 | |||
40 |