We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('reorders', function (Blueprint $table) { |
||
17 | $table->increments('id'); |
||
18 | $table->string('name'); |
||
19 | $table->bigInteger('parent_id')->nullable(); |
||
20 | $table->integer('lft')->nullable(); |
||
21 | $table->integer('rgt')->nullable(); |
||
22 | $table->integer('depth')->nullable(); |
||
23 | $table->timestamps(); |
||
24 | }); |
||
37 |