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