Lines 2135-2141
CREATE TABLE `z3950servers` ( -- connection information for the Z39.50 targets u
Link Here
|
2135 |
`checked` smallint(6) default NULL, -- whether this target is checked by default (1 for yes, 0 for no) |
2135 |
`checked` smallint(6) default NULL, -- whether this target is checked by default (1 for yes, 0 for no) |
2136 |
`rank` int(11) default NULL, -- where this target appears in the list of targets |
2136 |
`rank` int(11) default NULL, -- where this target appears in the list of targets |
2137 |
`syntax` varchar(80) default NULL, -- marc format provided by this target |
2137 |
`syntax` varchar(80) default NULL, -- marc format provided by this target |
2138 |
`timeout` int(11) NOT NULL DEFAULT '0', |
2138 |
`timeout` int(11) NOT NULL DEFAULT '0', -- number of seconds before Koha stops trying to access this server |
2139 |
`icon` text, -- unused in Koha |
2139 |
`icon` text, -- unused in Koha |
2140 |
`position` enum('primary','secondary','') NOT NULL default 'primary', |
2140 |
`position` enum('primary','secondary','') NOT NULL default 'primary', |
2141 |
`type` enum('zed','opensearch') NOT NULL default 'zed', |
2141 |
`type` enum('zed','opensearch') NOT NULL default 'zed', |
2142 |
- |
|
|