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