[Koha-cvs] koha/updater updatedatabase [rel_2_2]

Pierrick LE GALL pierrick at koha-fr.org
Tue Apr 18 11:34:16 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch: 	rel_2_2
Changes by:	Pierrick LE GALL <plg at savannah.gnu.org>	06/04/18 09:34:15

Modified files:
	updater        : updatedatabase 

Log message:
	bug fixed: typo fixed in labels and labels_conf tables creation query.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/updater/updatedatabase.diff?only_with_tag=rel_2_2&tr1=1.100.2.39&tr2=1.100.2.40&r1=text&r2=text

Patches:
Index: koha/updater/updatedatabase
diff -u koha/updater/updatedatabase:1.100.2.39 koha/updater/updatedatabase:1.100.2.40
--- koha/updater/updatedatabase:1.100.2.39	Mon Apr 17 21:19:52 2006
+++ koha/updater/updatedatabase	Tue Apr 18 09:34:15 2006
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: updatedatabase,v 1.100.2.39 2006/04/17 21:19:52 sushi Exp $
+# $Id: updatedatabase,v 1.100.2.40 2006/04/18 09:34:15 plg Exp $
 
 # Database Updater
 # This script checks for required updates to the database.
@@ -370,7 +370,7 @@
     labels => "(labelid int(11) NOT NULL auto_increment,
                             itemnumber varchar(100) NOT NULL default '',
                             timestamp timestamp(14) NOT NULL,
-                            PRIMARY KEY  (labelid),
+                            PRIMARY KEY  (labelid)
                             )",
     labels_conf => "(id int(4) NOT NULL auto_increment,
                            barcodetype char(100) default '',
@@ -383,7 +383,7 @@
                            author tinyint(1) default '0',
                            papertype char(100) default '',
                            startrow int(2) default NULL,
-                           PRIMARY KEY  (id),
+                           PRIMARY KEY  (id)
                            )",
 );
 
@@ -2054,6 +2054,9 @@
 exit;
 
 # $Log: updatedatabase,v $
+# Revision 1.100.2.40  2006/04/18 09:34:15  plg
+# bug fixed: typo fixed in labels and labels_conf tables creation query.
+#
 # Revision 1.100.2.39  2006/04/17 21:19:52  sushi
 # Added labels, and label_conf tables for spine labels tool.
 #





More information about the Koha-cvs mailing list