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 | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function up() |
||
14 | { |
||
15 | Schema::create('menu_items', function (Blueprint $table) { |
||
16 | $table->increments('id'); |
||
17 | $table->string('name', 100); |
||
18 | $table->string('type', 20)->nullable(); |
||
19 | $table->string('link', 255)->nullable(); |
||
20 | $table->integer('page_id')->unsigned()->nullable(); |
||
21 | $table->integer('parent_id')->unsigned()->nullable(); |
||
22 | $table->integer('lft')->unsigned()->nullable(); |
||
23 | $table->integer('rgt')->unsigned()->nullable(); |
||
24 | $table->integer('depth')->unsigned()->nullable(); |
||
25 | $table->timestamps(); |
||
26 | $table->softDeletes(); |
||
27 | }); |
||
28 | } |
||
29 | |||
40 |