Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
32 | public function up() |
||
33 | { |
||
34 | $this->createSchema(function (Blueprint $table) { |
||
35 | $table->increments('id'); |
||
36 | $table->string('name'); |
||
37 | $table->string('slug')->unique(); |
||
38 | $table->text('description')->nullable(); |
||
39 | NestedSet::columns($table); |
||
40 | $table->timestamps(); |
||
41 | }); |
||
42 | } |
||
43 | } |
||
44 |