id(); $table->text('content'); $table->foreignId('post_id'); $table->foreignId('parent_comment_id'); $table->string('status', 32)->comment('approved, pending'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('comments'); } };