[Koha-cvs] koha/updater updatedatabase [dev_week]

Kyle Hall kyle.m.hall at gmail.com
Wed Oct 31 14:18:02 CET 2007


CVSROOT:	/sources/koha
Module name:	koha
Branch:		dev_week
Changes by:	Kyle Hall <kylemhall>	07/10/31 13:18:02

Modified files:
	updater        : updatedatabase 

Log message:
	Fixed the default values.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/updater/updatedatabase?cvsroot=koha&only_with_tag=dev_week&r1=1.100.2.43.2.15&r2=1.100.2.43.2.16

Patches:
Index: updatedatabase
===================================================================
RCS file: /sources/koha/koha/updater/updatedatabase,v
retrieving revision 1.100.2.43.2.15
retrieving revision 1.100.2.43.2.16
diff -u -b -r1.100.2.43.2.15 -r1.100.2.43.2.16
--- updatedatabase	31 Oct 2007 13:14:55 -0000	1.100.2.43.2.15
+++ updatedatabase	31 Oct 2007 13:18:02 -0000	1.100.2.43.2.16
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: updatedatabase,v 1.100.2.43.2.15 2007/10/31 13:14:55 kylemhall Exp $
+# $Id: updatedatabase,v 1.100.2.43.2.16 2007/10/31 13:18:02 kylemhall Exp $
 
 # Database Updater
 # This script checks for required updates to the database.
@@ -422,9 +422,9 @@
         'homezipcode'   => 'varchar(25)',
         'sort1'         => 'char(80)',
         'sort2'         => 'char(80)',
-        'notifyByEmail'	=> 'tinyint(1) NOT NULL DEFAULT 1',
+        'notifyByEmail'	=> 'tinyint(1) NOT NULL DEFAULT 0',
         'notifyByMail'	=> 'tinyint(1) NOT NULL DEFAULT 1',
-        'notifyBySMS'	=> 'tinyint(1) NOT NULL DEFAULT 1',        
+        'notifyBySMS'	=> 'tinyint(1) NOT NULL DEFAULT 0',        
     },
     aqorders => {
         'budgetdate' => 'date',
@@ -2211,6 +2211,9 @@
 exit;
 
 # $Log: updatedatabase,v $
+# Revision 1.100.2.43.2.16  2007/10/31 13:18:02  kylemhall
+# Fixed the default values.
+#
 # Revision 1.100.2.43.2.15  2007/10/31 13:14:55  kylemhall
 # Added new borrower contact preferences, hope I got the syntax correct.
 #





More information about the Koha-cvs mailing list