| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('comments', function (Blueprint $table) { |
||
| 17 | $table->id(); |
||
| 18 | |||
| 19 | $table->text('body'); |
||
| 20 | $table->string('name'); |
||
| 21 | $table->string('email'); |
||
| 22 | |||
| 23 | $table->integer('commentable_id'); |
||
| 24 | $table->string('commentable_type'); |
||
| 25 | $table->timestamps(); |
||
| 26 | }); |
||
| 39 |