| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 38 | public function up() |
||
| 39 | { |
||
| 40 | $this->createSchema(function (Blueprint $table) { |
||
| 41 | $table->increments('id'); |
||
| 42 | $table->unsignedInteger('group_id')->default(0); |
||
| 43 | $table->string('name'); |
||
| 44 | $table->string('description')->nullable(); |
||
| 45 | $table->string('slug'); |
||
| 46 | $table->timestamps(); |
||
| 47 | |||
| 48 | $table->unique(['slug']); |
||
| 49 | }); |
||
| 50 | } |
||
| 51 | } |
||
| 52 |