From 733ca491f3d39afe469d18d43456f41a2b70c3ac Mon Sep 17 00:00:00 2001 From: mchev Date: Fri, 24 May 2024 11:52:44 +0200 Subject: [PATCH] Not loading laravel migration --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 234c8b1..f46da50 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -24,7 +24,7 @@ protected function getPackageProviders($app): array protected function defineDatabaseMigrations() { - $this->loadLaravelMigrations(); + // $this->loadLaravelMigrations(); $this->loadMigrationsFrom(__DIR__.'/../database/migrations'); } }