| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('failed_jobs', function (Blueprint $table) { |
||
| 17 | $table->id(); |
||
| 18 | $table->string('uuid')->unique(); |
||
| 19 | $table->text('connection'); |
||
| 20 | $table->text('queue'); |
||
| 21 | $table->longText('payload'); |
||
| 22 | $table->longText('exception'); |
||
| 23 | $table->timestamp('failed_at')->useCurrent(); |
||
| 24 | }); |
||
| 37 |