@@ -, +, @@ items.paidfor is removed --- installer/data/mysql/atomicupdate/bug_26268.perl | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) --- a/installer/data/mysql/atomicupdate/bug_26268.perl +++ a/installer/data/mysql/atomicupdate/bug_26268.perl @@ -14,12 +14,7 @@ if ( CheckVersion($DBversion) ) { } else { $dbh->do(q|ALTER TABLE items DROP COLUMN paidfor|); - $dbh->do(q| - DELETE FROM marc_subfield_structure - WHERE tagfield = '952' - AND tagsubfield = 'x' - AND kohafield = 'items.paidfor' - |); + $dbh->do(q|UPDATE marc_subfield_structure SET kohafield = '' WHERE kohafield = 'items.paidfor'|); } } --