@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_26268.perl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/installer/data/mysql/atomicupdate/bug_26268.perl +++ a/installer/data/mysql/atomicupdate/bug_26268.perl @@ -1,8 +1,11 @@ $DBversion = 'XXX'; # will be replaced by the RM if( CheckVersion( $DBversion ) ) { - if( !column_exists( 'items', 'paidfor' ) ) { + if( column_exists( 'items', 'paidfor' ) ) { $dbh->do(q|ALTER TABLE items DROP COLUMN paidfor|); + } + + if ( column_exists( 'deleteditems', 'paidfor' ) ) { $dbh->do(q|ALTER TABLE deleteditems DROP COLUMN paidfor|); } --