[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: |
Fri, 08 Dec 2006 15:36:57 +0000 |
CVSROOT: /cvsroot/koha
Module name: koha
Branch: rel_3_0
Changes by: Henri-Damien LAURENT <hdl> 06/12/08 15:36:57
Modified files:
updater : updatedatabase
Log message:
Adding issuedate to issues table.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/updater/updatedatabase?cvsroot=koha&only_with_tag=rel_3_0&r1=1.157.2.34&r2=1.157.2.35
Patches:
Index: updatedatabase
===================================================================
RCS file: /cvsroot/koha/koha/updater/updatedatabase,v
retrieving revision 1.157.2.34
retrieving revision 1.157.2.35
diff -u -b -r1.157.2.34 -r1.157.2.35
--- updatedatabase 7 Dec 2006 16:00:41 -0000 1.157.2.34
+++ updatedatabase 8 Dec 2006 15:36:57 -0000 1.157.2.35
@@ -1,6 +1,6 @@
#!/usr/bin/perl
-# $Id: updatedatabase,v 1.157.2.34 2006/12/07 16:00:41 hdl Exp $
+# $Id: updatedatabase,v 1.157.2.35 2006/12/08 15:36:57 hdl Exp $
# Database Updater
# This script checks for required updates to the database.
@@ -222,6 +222,8 @@
"position" =>"enum('primary','secondary','') NOT NULL
default 'primary'", "icon" =>"text",
"type" =>"enum('zed','opensearch') NOT NULL default 'zed'",
},
+ issues =>{ 'issuedate'=>'date NOT NULL default 0000-00-00', },
+
# tablename => { 'field' => 'fieldtype' },
);
@@ -2027,6 +2029,9 @@
exit;
# $Log: updatedatabase,v $
+# Revision 1.157.2.35 2006/12/08 15:36:57 hdl
+# Adding issuedate to issues table.
+#
# Revision 1.157.2.34 2006/12/07 16:00:41 hdl
# Adding issuedate to table issues.
# Modifying issuedate on issue (Circ2.pm)