| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('threads', function (Blueprint $table) { |
||
| 17 | $table->bigIncrements('id'); |
||
| 18 | $table->unsignedInteger('user_id'); |
||
| 19 | $table->string('user_type'); |
||
| 20 | $table->unsignedInteger('channel_id'); |
||
| 21 | $table->string('title'); |
||
| 22 | $table->string('slug'); |
||
| 23 | $table->text('body'); |
||
| 24 | $table->unsignedInteger('view_count')->default(0); |
||
| 25 | $table->timestamps(); |
||
| 26 | }); |
||
| 27 | } |
||
| 28 | |||
| 39 |