[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/updater updatedatabase [dev_week]
From: |
Kyle Hall |
Subject: |
[Koha-cvs] koha/updater updatedatabase [dev_week] |
Date: |
Thu, 20 Mar 2008 16:24:37 +0000 |
CVSROOT: /sources/koha
Module name: koha
Branch: dev_week
Changes by: Kyle Hall <kylemhall> 08/03/20 16:24:37
Modified files:
updater : updatedatabase
Log message:
Added the new fields for the updated reserves system.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/updater/updatedatabase?cvsroot=koha&only_with_tag=dev_week&r1=1.100.2.43.2.16&r2=1.100.2.43.2.17
Patches:
Index: updatedatabase
===================================================================
RCS file: /sources/koha/koha/updater/updatedatabase,v
retrieving revision 1.100.2.43.2.16
retrieving revision 1.100.2.43.2.17
diff -u -b -r1.100.2.43.2.16 -r1.100.2.43.2.17
--- updatedatabase 31 Oct 2007 13:18:02 -0000 1.100.2.43.2.16
+++ updatedatabase 20 Mar 2008 16:24:35 -0000 1.100.2.43.2.17
@@ -1,6 +1,6 @@
#!/usr/bin/perl
-# $Id: updatedatabase,v 1.100.2.43.2.16 2007/10/31 13:18:02 kylemhall Exp $
+# $Id: updatedatabase,v 1.100.2.43.2.17 2008/03/20 16:24:35 kylemhall Exp $
# Database Updater
# This script checks for required updates to the database.
@@ -461,6 +461,12 @@
},
marc_biblio => { 'frameworkcode' => 'char(4) not NULL default \'\'' },
serial => { 'publisheddate' => 'date'},
+ reserves => {
+ 'lockPriority' => 'tinyint(1) NOT NULL default 0',
+ 'lowestPriority' => 'tinyint(1) NOT NULL default 0',
+ 'startDate' => 'date NULL',
+ 'expirationDate' => 'date NULL',
+ }
);
my %dropable_table = (
@@ -2211,6 +2217,9 @@
exit;
# $Log: updatedatabase,v $
+# Revision 1.100.2.43.2.17 2008/03/20 16:24:35 kylemhall
+# Added the new fields for the updated reserves system.
+#
# Revision 1.100.2.43.2.16 2007/10/31 13:18:02 kylemhall
# Fixed the default values.
#
- [Koha-cvs] koha/updater updatedatabase [dev_week],
Kyle Hall <=