increments('id'); $table->bigInteger('report_id')->unsigned()->index(); $table->bigInteger('profile_id')->unsigned(); $table->bigInteger('user_id')->unsigned(); $table->text('comment'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('report_comments'); } }