increments('id'); $table->integer("post_id")->unsigned(); $table->foreign("post_id")->references("id")->on("posts")->onDelete("cascade")->onUpdate("cascade"); $table->string("name"); $table->string("email"); $table->text("comment"); $table->boolean("is_active")->default(false); $table->dateTime("confirmed_date")->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('comments'); } }