@@ -, +, @@ --- .../atomicupdate/Bug22532_remove_import_records_z39random.perl | 10 ++++++++++ installer/data/mysql/kohastructure.sql | 1 - 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 installer/data/mysql/atomicupdate/Bug22532_remove_import_records_z39random.perl --- a/installer/data/mysql/atomicupdate/Bug22532_remove_import_records_z39random.perl +++ a/installer/data/mysql/atomicupdate/Bug22532_remove_import_records_z39random.perl @@ -0,0 +1,10 @@ +$DBversion = 'XXX'; # will be replaced by the RM +if( CheckVersion( $DBversion ) ) { + if( column_exists( 'import_records', 'z3950random' ) ) { + $dbh->do( "ALTER TABLE import_records DROP COLUMN z3950random" ); + } + + # Always end with this (adjust the bug info) + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 22532 - Remove import_records z3950random column)\n"; +} --- a/installer/data/mysql/kohastructure.sql +++ a/installer/data/mysql/kohastructure.sql @@ -738,7 +738,6 @@ CREATE TABLE `import_records` ( `status` enum('error', 'staged', 'imported', 'reverted', 'items_reverted', 'ignored') NOT NULL default 'staged', `import_error` LONGTEXT, `encoding` varchar(40) NOT NULL default '', - `z3950random` varchar(40) default NULL, PRIMARY KEY (`import_record_id`), CONSTRAINT `import_records_ifbk_1` FOREIGN KEY (`import_batch_id`) REFERENCES `import_batches` (`import_batch_id`) ON DELETE CASCADE ON UPDATE CASCADE, --