1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-06-07 04:22:06 +03:00

Added missing migration down table drop

This commit is contained in:
Dan Brown 2021-12-10 14:58:14 +00:00
parent 6381041252
commit f2cb3b94f9
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9

View File

@ -41,5 +41,6 @@ class CreateWebhooksTable extends Migration
public function down() public function down()
{ {
Schema::dropIfExists('webhooks'); Schema::dropIfExists('webhooks');
Schema::dropIfExists('webhook_tracked_events');
} }
} }