From 5ba53022a7cfb1bcc6e158884f9d89939b699b30 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 18 Dec 2019 14:08:34 +0100 Subject: [PATCH] Bug 24263: DB changes --- installer/data/mysql/atomicupdate/bug_24215.perl | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_24215.perl diff --git a/installer/data/mysql/atomicupdate/bug_24215.perl b/installer/data/mysql/atomicupdate/bug_24215.perl new file mode 100644 index 0000000000..61a1915baf --- /dev/null +++ b/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"; +} -- 2.11.0