id(); $table->unsignedBigInteger('id_user'); $table->unsignedBigInteger('id_post'); $table->string('content'); $table->timestamps(); $table->foreign('id_user')->references('id')->on('users'); $table->foreign('id_post')->references('id')->on('posts'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('comments'); } }