diff --git a/code/web/release_notes/24.09.01.MD b/code/web/release_notes/24.09.01.MD index dee58368dd..a33280eac0 100644 --- a/code/web/release_notes/24.09.01.MD +++ b/code/web/release_notes/24.09.01.MD @@ -4,10 +4,14 @@ ### Other updates - Disabled the 'Show This Branch In Available At and Owning Location Facets' filter and setting as it is interacting poorly with facet labels. (*CZ*) +- Increased the length for debuginfo column in the grouped_work_debug_info table (Ticket 138696) (*KL*) ## This release includes code contributions from - Grove For Libraries - Mark Noble (MDN) - PTFS-Europe - - Chloe Zermatten (CZ) \ No newline at end of file + - Chloe Zermatten (CZ) + +- ByWater Solutions + - Kodi Lein (KL) \ No newline at end of file diff --git a/code/web/sys/DBMaintenance/version_updates/24.09.01.php b/code/web/sys/DBMaintenance/version_updates/24.09.01.php new file mode 100644 index 0000000000..ff704fa7eb --- /dev/null +++ b/code/web/sys/DBMaintenance/version_updates/24.09.01.php @@ -0,0 +1,24 @@ + [ + 'title' => '', + 'description' => '', + 'continueOnError' => false, + 'sql' => [ + '' + ] + ], //name*/ + + //kodi - ByWater + 'debug_info_update' => [ + 'title' => 'Update Debug Info Column', + 'description' => 'Increase size of debuginfo column to accommodate more information.', + 'sql' => [ + 'ALTER TABLE grouped_work_debug_info CHANGE COLUMN debugInfo debugInfo MEDIUMTEXT', + ], + ], + ]; +} \ No newline at end of file