From a964692cd6b9105ecbdfd9af7884ffbe7f6d1aec Mon Sep 17 00:00:00 2001 From: Wandes Cardoso Date: Mon, 29 Apr 2024 13:47:31 -0300 Subject: [PATCH] feat: added dropIfExists orders --- tests/Concerns/TestDatabase.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Concerns/TestDatabase.php b/tests/Concerns/TestDatabase.php index 5e4513b2..76238567 100644 --- a/tests/Concerns/TestDatabase.php +++ b/tests/Concerns/TestDatabase.php @@ -31,6 +31,7 @@ public static function down(): void Schema::dropIfExists('chefs'); Schema::dropIfExists('restaurants'); Schema::dropIfExists('category_chef'); + Schema::dropIfExists('orders'); } public static function migrate(): void