@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_24215.perl | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_24215.perl --- a/installer/data/mysql/atomicupdate/bug_24215.perl +++ a/installer/data/mysql/atomicupdate/bug_24215.perl @@ -0,0 +1,10 @@ +$DBversion = 'XXX'; # will be replaced by the RM +if( CheckVersion( $DBversion ) ) { + $dbh->do( q| + UPDATE borowers SET relationship = NULL + WHERE relationship = "" + |); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 24215 - Replace relationship with NULL when "")\n"; +} --