From f2cb3b94f90a33dec2a680d73e02df7a8ddb1fb9 Mon Sep 17 00:00:00 2001 From: Dan Brown Date: Fri, 10 Dec 2021 14:58:14 +0000 Subject: [PATCH] Added missing migration down table drop --- database/migrations/2021_12_07_111343_create_webhooks_table.php | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/2021_12_07_111343_create_webhooks_table.php b/database/migrations/2021_12_07_111343_create_webhooks_table.php index 2ded0b949..22b8549f4 100644 --- a/database/migrations/2021_12_07_111343_create_webhooks_table.php +++ b/database/migrations/2021_12_07_111343_create_webhooks_table.php @@ -41,5 +41,6 @@ class CreateWebhooksTable extends Migration public function down() { Schema::dropIfExists('webhooks'); + Schema::dropIfExists('webhook_tracked_events'); } }