From 85f5337261d34f2a171961615f40746a7e524e52 Mon Sep 17 00:00:00 2001 From: Nicole C. Engard Date: Wed, 18 Jul 2012 22:08:27 -0400 Subject: [PATCH] Bug 6716: Update z3950servers documentation The new timeout field was not documented. --- installer/data/mysql/kohastructure.sql | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 3b9827a..6dc7f65 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -2135,7 +2135,7 @@ CREATE TABLE `z3950servers` ( -- connection information for the Z39.50 targets u `checked` smallint(6) default NULL, -- whether this target is checked by default (1 for yes, 0 for no) `rank` int(11) default NULL, -- where this target appears in the list of targets `syntax` varchar(80) default NULL, -- marc format provided by this target - `timeout` int(11) NOT NULL DEFAULT '0', + `timeout` int(11) NOT NULL DEFAULT '0', -- number of seconds before Koha stops trying to access this server `icon` text, -- unused in Koha `position` enum('primary','secondary','') NOT NULL default 'primary', `type` enum('zed','opensearch') NOT NULL default 'zed', -- 1.7.2.3