From: Chris Cormack Date: Wed, 19 Oct 2011 14:19:02 +0000 (+1300) Subject: Bug 5436, adding updatedatabase.pl X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=8d39d21039d489444b7ed6fa06b03aa87d21f5bd;p=koha.git Bug 5436, adding updatedatabase.pl --- diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index e3309a2d82..ffaccaa84a 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -4523,6 +4523,12 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { SetVersion($DBversion); } +$DBversion = "3.05.00.XXX"; +if (C4::Context->preference("Version") < TransformToNum($DBversion)) { + $dbh->do("ALTER TABLE borrower_attribute_types ADD COLUMN display_checkout TINYINT(1) NOT NULL DEFAULT '0';"); + print "Upgrade to $DBversion done (Added a display_checkout field in borrower_attribute_types table)\n"; + SetVersion($DBversion); +} =head1 FUNCTIONS