From 43ebe2169af8865001a976d031d5040969273b24 Mon Sep 17 00:00:00 2001 From: Joe Williams Date: Wed, 15 Oct 2025 22:22:15 -0700 Subject: [PATCH] Fixed naming issue: Nullable tax category ID migration now runs the correct script. --- .../Migrations/20250729170000_NullableTaxCategoryId.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Database/Migrations/20250729170000_NullableTaxCategoryId.php b/app/Database/Migrations/20250729170000_NullableTaxCategoryId.php index 97daa4df2..ba4378981 100644 --- a/app/Database/Migrations/20250729170000_NullableTaxCategoryId.php +++ b/app/Database/Migrations/20250729170000_NullableTaxCategoryId.php @@ -11,12 +11,12 @@ class Migration_NullableTaxCategoryId extends Migration */ public function up(): void { - error_log('Migrating config table'); + error_log('Migrating nullable tax category ID'); helper('migration'); - execute_script(APPPATH . 'Database/Migrations/sqlscripts/3.4.2_missing_config_keys.sql'); + execute_script(APPPATH . 'Database/Migrations/sqlscripts/3.4.2_nullable_tax_category_id.sql'); - error_log('Migrating config table'); + error_log('Migrated nullable tax category ID'); } /**