[Koha-cvs] koha/updater updatedatabase

Chris Cormack chris at katipo.co.nz
Sat Jun 17 05:36:41 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Changes by:	Chris Cormack <rangi>	06/06/17 03:36:41

Modified files:
	updater        : updatedatabase 

Log message:
	Table definition for the reviews table

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

Patches:
Index: updatedatabase
===================================================================
RCS file: /sources/koha/koha/updater/updatedatabase,v
retrieving revision 1.146
retrieving revision 1.147
diff -u -b -r1.146 -r1.147
--- updatedatabase	17 Jun 2006 03:29:41 -0000	1.146
+++ updatedatabase	17 Jun 2006 03:36:41 -0000	1.147
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: updatedatabase,v 1.146 2006/06/17 03:29:41 rangi Exp $
+# $Id: updatedatabase,v 1.147 2006/06/17 03:36:41 rangi Exp $
 
 # Database Updater
 # This script checks for required updates to the database.
@@ -166,6 +166,13 @@
                            	startrow int(2) default NULL,
                            	PRIMARY KEY  (id)
                            	)",
+       reviews                  => "(
+	                        borrowernumber integer,
+	                        biblionumber integer,
+	                        review text,
+	                        approved tinyint,
+	                        datereviewed datetime
+	                        )",
 
 );
 
@@ -1784,6 +1791,9 @@
 exit;
 
 # $Log: updatedatabase,v $
+# Revision 1.147  2006/06/17 03:36:41  rangi
+# Table definition for the reviews table
+#
 # Revision 1.146  2006/06/17 03:29:41  rangi
 # Variable to allow librarians to switch reviews on or off
 #





More information about the Koha-cvs mailing list