Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('cms_menu_items', function (Blueprint $table) { |
||
17 | $table->bigIncrements('id'); |
||
18 | $table->string('name'); |
||
19 | $table->foreignId('menu_id'); |
||
20 | $table->string('url'); |
||
21 | $table->integer('order'); |
||
22 | $table->timestamps(); |
||
23 | |||
24 | $table->foreign('menu_id') |
||
25 | ->references('id') |
||
26 | ->on('cms_menus'); |
||
27 | }); |
||
28 | } |
||
29 | |||
40 |