From 6976fa8989896043dbefbccb20bfb0b5de3365ef Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Sat, 15 Jun 2024 06:57:11 -0400 Subject: [PATCH] Try again --- database/migrations/2024_06_06_043350_modify_allocations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2024_06_06_043350_modify_allocations.php b/database/migrations/2024_06_06_043350_modify_allocations.php index 8a195b778..08878d0da 100644 --- a/database/migrations/2024_06_06_043350_modify_allocations.php +++ b/database/migrations/2024_06_06_043350_modify_allocations.php @@ -37,7 +37,7 @@ return new class extends Migration } Schema::table('servers', function (Blueprint $table) { - $table->dropForeign('servers_allocation_id_foreign'); + $table->dropForeign(['allocation_id']); $table->dropColumn(['allocation_id']); });