From 76ec8d572872e3dafffa89874e7be0853d85e526 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 3 Sep 2026 13:17:55 -0400 Subject: [PATCH] fix reimbursement --- .../2025-12-01-000100_CreateReimbursementBatchAdminFiles.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/Database/Migrations/2025-12-01-000100_CreateReimbursementBatchAdminFiles.php b/app/Database/Migrations/2025-12-01-000100_CreateReimbursementBatchAdminFiles.php index f8463f6..c44cfa0 100644 --- a/app/Database/Migrations/2025-12-01-000100_CreateReimbursementBatchAdminFiles.php +++ b/app/Database/Migrations/2025-12-01-000100_CreateReimbursementBatchAdminFiles.php @@ -8,6 +8,10 @@ class CreateReimbursementBatchAdminFiles extends Migration { public function up() { + if ($this->db->tableExists('reimbursement_batch_admin_files')) { + return; + } + $fields = [ 'id' => [ 'type' => 'INT',