koha-cvs
[Top][All Lists]
Advanced

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

[Koha-cvs] koha/updater updatedatabase [R_2-2-7-1]


From: Antoine Farnault
Subject: [Koha-cvs] koha/updater updatedatabase [R_2-2-7-1]
Date: Mon, 12 Feb 2007 10:53:11 +0000

CVSROOT:        /sources/koha
Module name:    koha
Branch:         R_2-2-7-1
Changes by:     Antoine Farnault <toins>        07/02/12 10:53:11

Modified files:
        updater        : updatedatabase 

Log message:
        Commiting BUG FIX for 2.2.7.1.
        
        (changing tagorder to int(11) instead of tinyint)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/updater/updatedatabase?cvsroot=koha&only_with_tag=R_2-2-7-1&r1=1.100.2.54&r2=1.100.2.54.2.1

Patches:
Index: updatedatabase
===================================================================
RCS file: /sources/koha/koha/updater/updatedatabase,v
retrieving revision 1.100.2.54
retrieving revision 1.100.2.54.2.1
diff -u -b -r1.100.2.54 -r1.100.2.54.2.1
--- updatedatabase      31 Aug 2006 14:37:04 -0000      1.100.2.54
+++ updatedatabase      12 Feb 2007 10:53:11 -0000      1.100.2.54.2.1
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: updatedatabase,v 1.100.2.54 2006/08/31 14:37:04 tipaul Exp $
+# $Id: updatedatabase,v 1.100.2.54.2.1 2007/02/12 10:53:11 toins Exp $
 
 # Database Updater
 # This script checks for required updates to the database.
@@ -2005,6 +2005,9 @@
 $dbh->do(
 "alter table marc_subfield_table change tagorder tagorder int not null default 
'1'"
 );
+$dbh->do(
+"alter table marc_word change tagorder tagorder int not null default '1'"
+);
 
 # Get list of columns from marc_word table
 my %marc_word;
@@ -2193,6 +2196,11 @@
 exit;
 
 # $Log: updatedatabase,v $
+# Revision 1.100.2.54.2.1  2007/02/12 10:53:11  toins
+# Commiting BUG FIX for 2.2.7.1.
+#
+# (changing tagorder to int(11) instead of tinyint)
+#
 # Revision 1.100.2.54  2006/08/31 14:37:04  tipaul
 # fix for :
 # http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=1140




reply via email to

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