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