id(); $table->foreignId('user_id')->constrained()->onDelete('cascade'); $table->foreignId('cafe_id')->constrained()->onDelete('cascade'); $table->timestamps(); // Pastikan kombinasi user_id dan cafe_id unik $table->unique(['user_id', 'cafe_id']); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('favorites'); } };