From a461c40952be11fda4f4e252f6828c64107e1b74 Mon Sep 17 00:00:00 2001 From: benjie-wd Date: Thu, 18 Jul 2024 15:03:53 +0800 Subject: [PATCH] fix: Removed throw exception on migration down method --- .../migrations/2019_03_35_000003_drop_unused_logger_columns.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2019_03_35_000003_drop_unused_logger_columns.php b/database/migrations/2019_03_35_000003_drop_unused_logger_columns.php index 50e8d0b..fb69fc5 100644 --- a/database/migrations/2019_03_35_000003_drop_unused_logger_columns.php +++ b/database/migrations/2019_03_35_000003_drop_unused_logger_columns.php @@ -15,6 +15,6 @@ public function up(): void public function down(): void { - throw new BadMethodCallException('Reversing this migration is not supported.'); + // Reversing this migration is not supported due to 1 way changes. } }