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