| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function up() |
||
| 32 | { |
||
| 33 | $this->createSchema(function (Blueprint $table) { |
||
| 34 | $table->bigIncrements('id'); |
||
| 35 | $table->bigInteger('route_id', false, true)->index(); |
||
| 36 | $table->string('path')->index(); |
||
| 37 | $table->timestamp('created_at')->index(); |
||
| 38 | $table->timestamp('updated_at')->index(); |
||
| 39 | }); |
||
| 40 | } |
||
| 41 | } |
||
| 42 |