Bug 10807: (follow-up) make the new field search_history.type should be a varchar(16)
varchar(255) is too wide for "biblio" and "authority" values. Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
This commit is contained in:
parent
50e326e5c2
commit
0d1ae02441
2 changed files with 2 additions and 2 deletions
|
@ -1910,7 +1910,7 @@ CREATE TABLE IF NOT EXISTS `search_history` ( -- patron's opac search history
|
|||
`sessionid` varchar(32) NOT NULL, -- a system generated session id
|
||||
`query_desc` varchar(255) NOT NULL, -- the search that was performed
|
||||
`query_cgi` text NOT NULL, -- the string to append to the search url to rerun the search
|
||||
`type` varchar(255) NOT NULL DEFAULT 'biblio', -- search type, must be 'biblio' or 'authority'
|
||||
`type` varchar(16) NOT NULL DEFAULT 'biblio', -- search type, must be 'biblio' or 'authority'
|
||||
`total` int(11) NOT NULL, -- the total of results found
|
||||
`time` timestamp NOT NULL default CURRENT_TIMESTAMP, -- the date and time the search was run
|
||||
KEY `userid` (`userid`),
|
||||
|
|
|
@ -8388,7 +8388,7 @@ if ( CheckVersion($DBversion) ) {
|
|||
$DBversion = "3.15.00.XXX";
|
||||
if ( CheckVersion($DBversion) ) {
|
||||
$dbh->do(q|
|
||||
ALTER TABLE search_history ADD COLUMN type VARCHAR(255) NOT NULL DEFAULT 'biblio' AFTER query_cgi
|
||||
ALTER TABLE search_history ADD COLUMN type VARCHAR(16) NOT NULL DEFAULT 'biblio' AFTER query_cgi
|
||||
|);
|
||||
print "Upgrade to $DBversion done (Bug 10807 - Add db field search_history.type)\n";
|
||||
SetVersion($DBversion);
|
||||
|
|
Loading…
Reference in a new issue