Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
34 | public function up() |
||
35 | { |
||
36 | $this->createSchema(function(Blueprint $table) { |
||
37 | $table->increments('id'); |
||
38 | $table->string('name', 50); |
||
39 | $table->string('slug', 50); |
||
40 | $table->timestamps(); |
||
41 | $table->softDeletes(); |
||
42 | |||
43 | $table->unique('name'); |
||
44 | $table->unique('slug'); |
||
45 | }); |
||
46 | } |
||
47 | } |
||
48 |