| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function up() |
||
| 35 | { |
||
| 36 | $this->createSchema(function (Blueprint $table) { |
||
| 37 | $table->engine = 'InnoDB'; |
||
| 38 | |||
| 39 | $table->increments('id'); |
||
| 40 | $table->integer('author_id')->unsigned(); |
||
| 41 | $table->string('title'); |
||
| 42 | $table->string('slug'); |
||
| 43 | $table->text('content'); |
||
| 44 | $table->string('template')->nullable(); |
||
| 45 | $table->timestamps(); |
||
| 46 | $table->softDeletes(); |
||
| 47 | |||
| 48 | $table->unique('slug'); |
||
| 49 | }); |
||
| 50 | } |
||
| 51 | } |
||
| 52 |