@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug-23797.perl | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug-23797.perl --- a/installer/data/mysql/atomicupdate/bug-23797.perl +++ a/installer/data/mysql/atomicupdate/bug-23797.perl @@ -0,0 +1,7 @@ +$DBversion = 'XXX'; # will be replaced by the RM +if( CheckVersion( $DBversion ) ) { + $dbh->do( "ALTER TABLE opac_news CHANGE lang lang VARCHAR(50)" ); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 23797: Extend the opac_news lang column to accommodate longer values)\n"; +} --