Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
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->string('name', 50); |
||
43 | $table->string('slug', 50); |
||
44 | $table->timestamps(); |
||
45 | $table->softDeletes(); |
||
46 | |||
47 | $table->unique('name'); |
||
48 | $table->unique('slug'); |
||
49 | }); |
||
50 | } |
||
51 | } |
||
52 |