[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/updater updatedatabase [rel_3_0]
From: |
Antoine Farnault |
Subject: |
[Koha-cvs] koha/updater updatedatabase [rel_3_0] |
Date: |
Wed, 20 Dec 2006 11:42:17 +0000 |
CVSROOT: /sources/koha
Module name: koha
Branch: rel_3_0
Changes by: Antoine Farnault <toins> 06/12/20 11:42:17
Modified files:
updater : updatedatabase
Log message:
adding table "tags"
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/updater/updatedatabase?cvsroot=koha&only_with_tag=rel_3_0&r1=1.157.2.38&r2=1.157.2.39
Patches:
Index: updatedatabase
===================================================================
RCS file: /sources/koha/koha/updater/updatedatabase,v
retrieving revision 1.157.2.38
retrieving revision 1.157.2.39
diff -u -b -r1.157.2.38 -r1.157.2.39
--- updatedatabase 19 Dec 2006 12:06:53 -0000 1.157.2.38
+++ updatedatabase 20 Dec 2006 11:42:17 -0000 1.157.2.39
@@ -1,6 +1,6 @@
#!/usr/bin/perl
-# $Id: updatedatabase,v 1.157.2.38 2006/12/19 12:06:53 alaurin Exp $
+# $Id: updatedatabase,v 1.157.2.39 2006/12/20 11:42:17 toins Exp $
# Database Updater
# This script checks for required updates to the database.
@@ -206,7 +206,12 @@
`level` int(1) NOT NULL default '0',
PRIMARY KEY (`charge_id`)
)",
-
+ tags => "(
+ `entry` varchar(255) NOT NULL default '',
+ `weight` bigint(20) NOT NULL default '0',
+ PRIMARY KEY (`entry`)
+ )
+ ",
);
my %requirefields = (
@@ -2036,6 +2041,9 @@
exit;
# $Log: updatedatabase,v $
+# Revision 1.157.2.39 2006/12/20 11:42:17 toins
+# adding table "tags"
+#
# Revision 1.157.2.38 2006/12/19 12:06:53 alaurin
# adding a new system preference : RequestOnOpac ;
#