bigIncrements('id'); $table->unsignedBigInteger('user_id')->index(); $table->unsignedBigInteger('parent_id')->nullable(); $table->text('body'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('comments'); } }