@@ -, +, @@ in marc_subfield_structure.kohafield. --- installer/data/mysql/atomicupdate/bug19790.perl | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug19790.perl --- a/installer/data/mysql/atomicupdate/bug19790.perl +++ a/installer/data/mysql/atomicupdate/bug19790.perl @@ -0,0 +1,6 @@ +$DBversion = 'XXX'; # will be replaced by the RM +if( CheckVersion( $DBversion ) ) { + $dbh->do( "UPDATE marc_subfield_structure SET kohafield=NULL where kohafield='additionalauthors.author'" ); + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 19790 - Remove additionalauthors.author from installer files)\n"; +} --