[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/updater updatedatabase [rel_3_0]
From: |
Henri-Damien LAURENT |
Subject: |
[Koha-cvs] koha/updater updatedatabase [rel_3_0] |
Date: |
Wed, 13 Dec 2006 19:48:10 +0000 |
CVSROOT: /cvsroot/koha
Module name: koha
Branch: rel_3_0
Changes by: Henri-Damien LAURENT <hdl> 06/12/13 19:48:09
Modified files:
updater : updatedatabase
Log message:
Adding claimdate to serials.
(Needed to record claimdate
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/updater/updatedatabase?cvsroot=koha&only_with_tag=rel_3_0&r1=1.157.2.35&r2=1.157.2.36
Patches:
Index: updatedatabase
===================================================================
RCS file: /cvsroot/koha/koha/updater/updatedatabase,v
retrieving revision 1.157.2.35
retrieving revision 1.157.2.36
diff -u -b -r1.157.2.35 -r1.157.2.36
--- updatedatabase 8 Dec 2006 15:36:57 -0000 1.157.2.35
+++ updatedatabase 13 Dec 2006 19:48:09 -0000 1.157.2.36
@@ -1,6 +1,6 @@
#!/usr/bin/perl
-# $Id: updatedatabase,v 1.157.2.35 2006/12/08 15:36:57 hdl Exp $
+# $Id: updatedatabase,v 1.157.2.36 2006/12/13 19:48:09 hdl Exp $
# Database Updater
# This script checks for required updates to the database.
@@ -216,7 +216,7 @@
aqbudget => { 'branchcode' => 'varchar(4) NULL'},
auth_header => { 'marc' => 'BLOB NOT NULL', 'linkid' => 'BIGINT(20) NULL'},
auth_subfield_structure =>{ 'hidden' => 'TINYINT(3) NOT NULL default 0',
'kohafield' => 'VARCHAR(45) NOT NULL', 'linkid' => 'TINYINT(1) NOT NULL
default 0', 'isurl' => 'TINYINT(1)', 'frameworkcode'=>'VARCHAR(8) NOT NULL'},
- serial =>{ 'publisheddate' => 'date', 'itemnumber'=>'text
NULL','routingnotes'=>'text NULL',},
+ serial =>{ 'publisheddate' => 'date', 'claimdate' => 'date',
'itemnumber'=>'text NULL','routingnotes'=>'text NULL',},
statistics => { 'associatedborrower' => 'integer'},
z3950servers =>{ "name" =>"text", "description" => "text NOT NULL",
"position" =>"enum('primary','secondary','') NOT NULL
default 'primary'", "icon" =>"text",
@@ -2029,6 +2029,10 @@
exit;
# $Log: updatedatabase,v $
+# Revision 1.157.2.36 2006/12/13 19:48:09 hdl
+# Adding claimdate to serials.
+# (Needed to record claimdate
+#
# Revision 1.157.2.35 2006/12/08 15:36:57 hdl
# Adding issuedate to issues table.
#