Fixed naming issue:

Nullable tax category ID migration now runs the correct script.
This commit is contained in:
Joe Williams
2025-10-15 22:22:15 -07:00
parent 3f82ac179a
commit 43ebe2169a

View File

@@ -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');
}
/**