@@ -, +, @@ --- .../atomicupdate/001-26684-drop_marc_column_from_auth_header.pl | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/001-26684-drop_marc_column_from_auth_header.pl --- a/installer/data/mysql/atomicupdate/001-26684-drop_marc_column_from_auth_header.pl +++ a/installer/data/mysql/atomicupdate/001-26684-drop_marc_column_from_auth_header.pl @@ -0,0 +1,6 @@ +$DBversion = 'XXX'; # will be replaced by the RM +if( CheckVersion( $DBversion ) ) { + $dbh->do( "ALTER TABLE auth_header DROP COLUMN marc" ); + + NewVersion( $DBversion, XXXXX, "Drop marc column from auth_header"); +} --