From 3361a8cf6885a1bb5321e5a0a682f0a45b90a570 Mon Sep 17 00:00:00 2001 From: Kendall Arneaud Date: Sat, 27 Jul 2024 12:29:58 -0400 Subject: [PATCH] Update 2024_06_11_231143_add_rotessa_gateway.php remove tear down as per request https://github.com/invoiceninja/invoiceninja/pull/9704#discussion_r1693681455 Signed-off-by: Kendall Arneaud --- .../migrations/2024_06_11_231143_add_rotessa_gateway.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/database/migrations/2024_06_11_231143_add_rotessa_gateway.php b/database/migrations/2024_06_11_231143_add_rotessa_gateway.php index cb18062b40e0..eb8d013d7fef 100644 --- a/database/migrations/2024_06_11_231143_add_rotessa_gateway.php +++ b/database/migrations/2024_06_11_231143_add_rotessa_gateway.php @@ -33,12 +33,4 @@ return new class extends Migration $gateway->save(); } } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Gateway::where('name', '=', 'Rotessa')->delete(); - } };