@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_23151.perl | 13 +++++++++++++ installer/data/mysql/kohastructure.sql | 1 + 2 files changed, 14 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_23151.perl --- a/installer/data/mysql/atomicupdate/bug_23151.perl +++ a/installer/data/mysql/atomicupdate/bug_23151.perl @@ -0,0 +1,13 @@ +use C4::Installer; + +my $DBVersion = 'XXX'; +if ( CheckVersion( $DBversion ) ) { + print "Running... "; + unless ( column_exists( 'borrower_modifications', 'changed_fields' ) ) { + print "Running... "; + $dbh->do("ALTER TABLE borrower_modifications ADD changed_fields MEDIUMTEXT AFTER verification_token;"); + } + print "Ran\n"; + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 23151 - Add borrower_modifications.changed_fields column)\n"; +} --- a/installer/data/mysql/kohastructure.sql +++ a/installer/data/mysql/kohastructure.sql @@ -3324,6 +3324,7 @@ CREATE TABLE borrower_attribute_types_branches( -- association table between bor CREATE TABLE IF NOT EXISTS `borrower_modifications` ( `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `verification_token` varchar(255) NOT NULL DEFAULT '', + `changed_fields` MEDIUMTEXT NOT NULL DEFAULT '', `borrowernumber` int(11) NOT NULL DEFAULT '0', `cardnumber` varchar(32) DEFAULT NULL, `surname` LONGTEXT, --