From 874bd38f5a277697e9320ba55606ac4ef19b5c2d Mon Sep 17 00:00:00 2001 From: Refringe Date: Tue, 28 Jan 2025 17:30:54 -0500 Subject: [PATCH] Fixes rollback issue Fixes an issue when refreshing or rolling back a database migration. The incorrect table was specified in the down method. --- .../2024_09_26_164844_create_oauth_providers_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2024_09_26_164844_create_oauth_providers_table.php b/database/migrations/2024_09_26_164844_create_oauth_providers_table.php index 66a1e32..00f3e62 100644 --- a/database/migrations/2024_09_26_164844_create_oauth_providers_table.php +++ b/database/migrations/2024_09_26_164844_create_oauth_providers_table.php @@ -37,6 +37,6 @@ return new class extends Migration */ public function down(): void { - Schema::dropIfExists('oauth_providers'); + Schema::dropIfExists('oauth_connections'); } };