From cf84cb4e2bd98fbcc46dec33cd52cfd6ee426acf Mon Sep 17 00:00:00 2001 From: William Allen Date: Wed, 19 Aug 2026 16:23:43 -0400 Subject: [PATCH] Increase `testoutput` ID column type to bigint #3054 updated the `build2test` ID column, but failed to consider that the `testoutput` has a roughly equivalent number of rows and is subject to the same overflow issues. This PR fixes the issue by increasing the `testoutput` ID column type from `integer` to `bigint`. CDash administrators should note that this migration may take hours for some instances since both the `build2test` and `testoutput` tables must be rewritten. --- ...6_08_19_200553_testoutput_id_column_type.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 database/migrations/2026_08_19_200553_testoutput_id_column_type.php diff --git a/database/migrations/2026_08_19_200553_testoutput_id_column_type.php b/database/migrations/2026_08_19_200553_testoutput_id_column_type.php new file mode 100644 index 0000000000..e344364a5f --- /dev/null +++ b/database/migrations/2026_08_19_200553_testoutput_id_column_type.php @@ -0,0 +1,17 @@ +