unsignedInteger('user_id'); $table->foreign('user_id') ->references('id')->on('users') ->onDelete('no action'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('photos', function (Blueprint $table) { $table->dropForeign('photos_user_id_foreign'); $table->dropColumn('user_id'); }); } }