@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_10021.perl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_10021.perl --- a/installer/data/mysql/atomicupdate/bug_10021.perl +++ a/installer/data/mysql/atomicupdate/bug_10021.perl @@ -0,0 +1,14 @@ +$DBversion = 'XXX'; # will be replaced by the RM +if( CheckVersion( $DBversion ) ) { + + $dbh->do(q|DROP TABLE IF EXISTS notifys|); + + if( column_exists( 'accountlines', 'notify_id' ) ) { + $dbh->do(q|ALTER TABLE accountlines DROP COLUMN notify_id|); + $dbh->do(q|ALTER TABLE accountlines DROP COLUMN notify_level|); + } + + # Always end with this (adjust the bug info) + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 10021 - Drop notifys-related table and columns)\n"; +} --