fixed migration

This commit is contained in:
Codex Agent
2025-11-15 21:48:11 +01:00
parent 1f5f8311d5
commit 9d741ce634

View File

@@ -37,7 +37,7 @@ return new class extends Migration
$table->timestamp('dismissed_at')->nullable();
$table->timestamps();
$table->unique(['guest_notification_id', 'guest_identifier']);
$table->unique(['guest_notification_id', 'guest_identifier'], 'guest_notifications_guest_identifier_unique');
$table->index(['guest_identifier', 'status']);
});
}