Bug 5436, adding updatedatabase.pl
authorChris Cormack <chrisc@catalyst.net.nz>
Wed, 19 Oct 2011 14:19:02 +0000 (03:19 +1300)
committerChris Cormack <chrisc@catalyst.net.nz>
Wed, 19 Oct 2011 14:19:02 +0000 (03:19 +1300)
installer/data/mysql/updatedatabase.pl

index e3309a2..ffaccaa 100755 (executable)
@@ -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