| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 13 | public function up() |
||
| 14 | { |
||
| 15 | Schema::create('menu__menu_translations', function (Blueprint $table) { |
||
| 16 | $table->engine = 'InnoDB'; |
||
| 17 | $table->increments('id'); |
||
| 18 | $table->integer('menu_id')->unsigned(); |
||
| 19 | $table->string('locale')->index(); |
||
| 20 | |||
| 21 | $table->tinyInteger('status')->default(0); |
||
| 22 | $table->string('title'); |
||
| 23 | |||
| 24 | $table->unique(['menu_id', 'locale']); |
||
| 25 | $table->foreign('menu_id')->references('id')->on('menu__menus')->onDelete('cascade'); |
||
| 26 | $table->timestamps(); |
||
| 27 | }); |
||
| 28 | } |
||
| 29 | |||
| 40 |