From 58f97a163f8d08336b68a9452979673a8e1a9cf1 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sat, 5 Dec 2020 07:09:05 +0100 Subject: [PATCH] Also drop attempts DB --- database/migrations/2020_11_12_070604_changes_for_v550.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/2020_11_12_070604_changes_for_v550.php b/database/migrations/2020_11_12_070604_changes_for_v550.php index c4992b449b..48a54f40b0 100644 --- a/database/migrations/2020_11_12_070604_changes_for_v550.php +++ b/database/migrations/2020_11_12_070604_changes_for_v550.php @@ -53,6 +53,7 @@ class ChangesForV550 extends Migration $table->dropColumn('generated'); } ); + Schema::dropIfExists('webhook_attempts'); Schema::dropIfExists('webhook_messages'); Schema::dropIfExists('webhooks'); }