id(); $table->timestamps(); $table->string("name"); $table->string("email"); $table->text("content"); $table->morphs("commentable"); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('comments'); } };