From 907cc144adade0f7faf25bbbef88fcb32aa8132f Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 11 Mar 2015 15:00:55 -0300 Subject: [PATCH] Bug 11430: (QA followup) small typos in kohastructure.sql MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ìd (note the accent) is not a good column name :-D Signed-off-by: Tomas Cohen Arazi --- installer/data/mysql/kohastructure.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 5738dae..9504876 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -1939,7 +1939,7 @@ CREATE TABLE saved_reports ( DROP TABLE IF EXISTS `search_history`; CREATE TABLE IF NOT EXISTS `search_history` ( -- patron's opac search history - `ìd` int(11) NOT NULL auto_increment, -- search history id + `id` int(11) NOT NULL auto_increment, -- search history id `userid` int(11) NOT NULL, -- the patron who performed the search (borrowers.borrowernumber) `sessionid` varchar(32) NOT NULL, -- a system generated session id `query_desc` varchar(255) NOT NULL, -- the search that was performed @@ -1948,7 +1948,7 @@ CREATE TABLE IF NOT EXISTS `search_history` ( -- patron's opac search history `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`), - KEY `sessionid` (`sessionid`) + KEY `sessionid` (`sessionid`), PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='Opac search history results'; -- 2.3.2