From 8009565f39f31f34d951c1662683576a7e51cb3b Mon Sep 17 00:00:00 2001 From: Angelos Michalopoulos Date: Fri, 15 Nov 2024 00:57:30 +0200 Subject: [PATCH] Fix migrations when database does not exist --- src/NativeServiceProvider.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/NativeServiceProvider.php b/src/NativeServiceProvider.php index a2d5f037..2eeebb34 100644 --- a/src/NativeServiceProvider.php +++ b/src/NativeServiceProvider.php @@ -4,7 +4,6 @@ use Illuminate\Console\Application; use Illuminate\Support\Arr; -use Illuminate\Support\Facades\Artisan; use Illuminate\Support\Facades\DB; use Native\Laravel\Commands\FreshCommand; use Native\Laravel\Commands\LoadPHPConfigurationCommand; @@ -112,8 +111,6 @@ public function rewriteDatabase() if (! file_exists($databasePath)) { touch($databasePath); - - Artisan::call('native:migrate'); } }