Try again

This commit is contained in:
Lance Pioch 2024-06-15 06:57:11 -04:00
parent 2b58160da9
commit 6976fa8989

View File

@ -37,7 +37,7 @@ return new class extends Migration
} }
Schema::table('servers', function (Blueprint $table) { Schema::table('servers', function (Blueprint $table) {
$table->dropForeign('servers_allocation_id_foreign'); $table->dropForeign(['allocation_id']);
$table->dropColumn(['allocation_id']); $table->dropColumn(['allocation_id']);
}); });