| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('fg_comments', function (Blueprint $table) { |
||
| 17 | $table->string('id', 150); |
||
| 18 | $table->string('creatable_id', 150)->index(); |
||
| 19 | $table->string('creatable_type'); |
||
| 20 | $table->string('commentable_id', 150)->index(); |
||
| 21 | $table->string('commentable_type'); |
||
| 22 | $table->text('comment'); |
||
| 23 | $table->timestamps(); |
||
| 24 | |||
| 39 |