[Koha-cvs] koha/updater updatedatabase

Ryan Higgins rch at liblime.com
Mon Mar 12 18:52:30 CET 2007


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	Ryan Higgins <rych>	07/03/12 17:52:30

Modified files:
	updater        : updatedatabase 

Log message:
	add pri key to userflags

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

Patches:
Index: updatedatabase
===================================================================
RCS file: /sources/koha/koha/updater/updatedatabase,v
retrieving revision 1.158
retrieving revision 1.159
diff -u -b -r1.158 -r1.159
--- updatedatabase	9 Mar 2007 15:14:57 -0000	1.158
+++ updatedatabase	12 Mar 2007 17:52:30 -0000	1.159
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: updatedatabase,v 1.158 2007/03/09 15:14:57 tipaul Exp $
+# $Id: updatedatabase,v 1.159 2007/03/12 17:52:30 rych Exp $
 
 # Database Updater
 # This script checks for required updates to the database.
@@ -1101,6 +1101,12 @@
             content => 'itemnumber',
         }
     ],
+	userflags => [
+		{ 	indexname => 'PRIMARY',
+			content => 'bit',
+			type => 'PRI',
+		}
+	]
 );
 
 my %foreign_keys = (
@@ -1962,6 +1968,9 @@
 exit;
 
 # $Log: updatedatabase,v $
+# Revision 1.159  2007/03/12 17:52:30  rych
+# add pri key to userflags
+#
 # Revision 1.158  2007/03/09 15:14:57  tipaul
 # rel_3_0 moved to HEAD
 #





More information about the Koha-cvs mailing list