Skip to content

Commit

Permalink
Merge pull request Aspen-Discovery#2073 from K-Alette/24.09.01
Browse files Browse the repository at this point in the history
debuginfo column length
  • Loading branch information
mdnoble73 authored Sep 26, 2024
2 parents a53258e + c0e2527 commit 9f15e3d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
6 changes: 5 additions & 1 deletion code/web/release_notes/24.09.01.MD
Original file line number Diff line number Diff line change
Expand Up @@ -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)
- Chloe Zermatten (CZ)

- ByWater Solutions
- Kodi Lein (KL)
24 changes: 24 additions & 0 deletions code/web/sys/DBMaintenance/version_updates/24.09.01.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

function getUpdates24_09_01(): array {
$curTime = time();
return [
/*'name' => [
'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',
],
],
];
}

0 comments on commit 9f15e3d

Please sign in to comment.