Fixes rollback issue

Fixes an issue when refreshing or rolling back a database migration. The incorrect table was specified in the down method.
This commit is contained in:
Refringe 2025-01-28 17:30:54 -05:00
parent e87027b9f7
commit 874bd38f5a
Signed by: Refringe
SSH Key Fingerprint: SHA256:t865XsQpfTeqPRBMN2G6+N8wlDjkgUCZF3WGW6O9N/k

View File

@ -37,6 +37,6 @@ return new class extends Migration
*/
public function down(): void
{
Schema::dropIfExists('oauth_providers');
Schema::dropIfExists('oauth_connections');
}
};