@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_26995.perl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/installer/data/mysql/atomicupdate/bug_26995.perl +++ a/installer/data/mysql/atomicupdate/bug_26995.perl @@ -1,18 +1,18 @@ $DBversion = 'XXX'; # will be replaced by the RM if( CheckVersion( $DBversion ) ) { - if ( !column_exists( 'borrowers', 'relationship' ) ) { + if ( column_exists( 'borrowers', 'relationship' ) ) { $dbh->do(q{ ALTER TABLE borrowers DROP COLUMN relationship }); } - if ( !column_exists( 'deletedborrowers', 'relationship' ) ) { + if ( column_exists( 'deletedborrowers', 'relationship' ) ) { $dbh->do(q{ ALTER TABLE deletedborrowers DROP COLUMN relationship }); } - if ( !column_exists( 'borrower_modifications', 'relationship' ) ) { + if ( column_exists( 'borrower_modifications', 'relationship' ) ) { $dbh->do(q{ ALTER TABLE borrower_modifications DROP COLUMN relationship }); --