id(); $table->foreignId('user_id')->constrained()->onDelete('cascade'); $table->morphs('commentable'); $table->text('content'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('comments'); } };