koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha/updater updatedatabase


From: paul poulain
Subject: [Koha-cvs] koha/updater updatedatabase
Date: Mon, 25 Jun 2007 15:02:32 +0000

CVSROOT:        /sources/koha
Module name:    koha
Changes by:     paul poulain <tipaul>   07/06/25 15:02:32

Modified files:
        updater        : updatedatabase 

Log message:
        missing field declaration

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

Patches:
Index: updatedatabase
===================================================================
RCS file: /sources/koha/koha/updater/updatedatabase,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -b -r1.167 -r1.168
--- updatedatabase      15 Jun 2007 13:09:08 -0000      1.167
+++ updatedatabase      25 Jun 2007 15:02:31 -0000      1.168
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: updatedatabase,v 1.167 2007/06/15 13:09:08 toins Exp $
+# $Id: updatedatabase,v 1.168 2007/06/25 15:02:31 tipaul Exp $
 
 # Database Updater
 # This script checks for required updates to the database.
@@ -596,7 +596,7 @@
             field    => 'id',
             type    => 'int(11)',
             null    => 'NOT NULL',
-            key        => '',
+            key        => 'PRI',
             default    => '',
             extra    => 'auto_increment',
         },
@@ -998,6 +998,15 @@
             extra  => '',
         },
     ],
+    marc_breeding => [
+        {
+            field => 'marc',
+            type  => 'LONGBLOB',
+            null  => 'NULL',
+            key    => '',
+            extra  => '',
+        }
+    ],
     marc_subfield_structure => [
         {
             field => 'defaultvalue',
@@ -2058,6 +2067,9 @@
 exit;
 
 # $Log: updatedatabase,v $
+# Revision 1.168  2007/06/25 15:02:31  tipaul
+# missing field declaration
+#
 # Revision 1.167  2007/06/15 13:09:08  toins
 # bugfix : bibliotitems.dewey & deletedbiblioitems.dewey mustn't be 
double(8,6).
 #




reply via email to

[Prev in Thread] Current Thread [Next in Thread]