id(); $table->unsignedBigInteger("photo_id"); $table->unsignedBigInteger("album_id"); $table->timestamps(); $table->foreign("photo_id")->references("id")->on("photos"); $table->foreign("album_id")->references("id")->on("albums"); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('albums_photos'); } };