Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
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->unsignedBigInteger('route_path_id')->index(); |
||
36 | $table->string('parameter')->index(); |
||
37 | $table->string('value')->index(); |
||
38 | $table->timestamp('created_at')->index(); |
||
39 | $table->timestamp('updated_at')->index(); |
||
40 | }); |
||
41 | } |
||
42 | } |
||
43 |