[Koha-cvs] koha/updater updatedatabase

Antoine Farnault antoine at koha-fr.org
Fri Jun 8 11:40:13 CEST 2007


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	Antoine Farnault <toins>	07/06/08 09:40:13

Modified files:
	updater        : updatedatabase 

Log message:
	bug fix : items.homebranch must be VARCHAR(10)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/updater/updatedatabase?cvsroot=koha&r1=1.165&r2=1.166

Patches:
Index: updatedatabase
===================================================================
RCS file: /sources/koha/koha/updater/updatedatabase,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -b -r1.165 -r1.166
--- updatedatabase	23 May 2007 16:33:10 -0000	1.165
+++ updatedatabase	8 Jun 2007 09:40:12 -0000	1.166
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: updatedatabase,v 1.165 2007/05/23 16:33:10 tipaul Exp $
+# $Id: updatedatabase,v 1.166 2007/06/08 09:40:12 toins Exp $
 
 # Database Updater
 # This script checks for required updates to the database.
@@ -566,7 +566,7 @@
         {
             uniquefieldrequired => 'id',
             category            => 'SUGGEST',
-            authorised_value    => 'Not enoug budget',
+            authorised_value    => 'Not enough budget',
             lib                 => 'This book it too much expensive',
         }
     ],
@@ -941,6 +941,14 @@
             extra    => '',
         },
         {
+            field    => 'homebranch',
+            type    => 'varchar(10)',
+            null    => 'NULL',
+            key        => '',
+            default    => '',
+            extra    => '',
+        },
+        {
             field    => 'holdingbranch',
             type    => 'varchar(10)',
             null    => 'NULL',
@@ -2034,6 +2042,9 @@
 exit;
 
 # $Log: updatedatabase,v $
+# Revision 1.166  2007/06/08 09:40:12  toins
+# bug fix : items.homebranch must be VARCHAR(10)
+#
 # Revision 1.165  2007/05/23 16:33:10  tipaul
 # skip move to innoDB for the 4 22 tables, that are used to store MARC records, are useless in Koha 3.0 The process is very very long, so the updatedatabase should speed up a lot (by long I mean 1 hour on my Dual core with SCSI disk, for a 50 000 biblios long table
 #





More information about the Koha-cvs mailing list