| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Code Lines | 8 | 
| Lines | 0 | 
| Ratio | 0 % | 
| 1 | <?php  | 
            ||
| 35 | public function up()  | 
            ||
| 36 |     { | 
            ||
| 37 |         Schema::connection($this->connection)->create($this->table, function (Blueprint $table) { | 
            ||
| 38 |             $table->increments('id'); | 
            ||
| 39 |             $table->string('name'); | 
            ||
| 40 |             $table->string('slug'); | 
            ||
| 41 |             $table->string('description')->nullable(); | 
            ||
| 42 | $table->timestamps();  | 
            ||
| 43 | |||
| 44 |             $table->unique('slug'); | 
            ||
| 45 | });  | 
            ||
| 46 | }  | 
            ||
| 47 | }  | 
            ||
| 48 |