From dc6d792479647962defd3dde2cc89f235ff8e60b Mon Sep 17 00:00:00 2001 From: Lee Jamison Date: Thu, 22 Jun 2017 16:42:15 +0000 Subject: [PATCH] Bug 18848: borrowers.lastseen comment typo Typo in comment for the lastseen column in the borrowers table. To test: 1. Verify lastseen column displays "last time a patron has been seed" 2. Apply patch 3. Verify lastseen column changed to "last time a patron has been seen" Signed-off-by: Marcel de Rooy Signed-off-by: Jonathan Druart (cherry picked from commit 23b84c0b6532d9c42894b648891d835e7624db49) Signed-off-by: Fridolin Somers (cherry picked from commit 0905eabc45a028cadf329f82f1287b49cb17023d) Signed-off-by: Katrin Fischer --- installer/data/mysql/kohastructure.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 1bd9fffb66..b51b9ab47f 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -1655,7 +1655,7 @@ CREATE TABLE `borrowers` ( -- this table includes information about your patrons `privacy_guarantor_checkouts` tinyint(1) NOT NULL DEFAULT '0', -- controls if relatives can see this patron's checkouts `checkprevcheckout` varchar(7) NOT NULL default 'inherit', -- produce a warning for this patron if this item has previously been checked out to this patron if 'yes', not if 'no', defer to category setting if 'inherit'. `updated_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, -- time of last change could be useful for synchronization with external systems (among others) - `lastseen` datetime default NULL, -- last time a patron has been seed (connected at the OPAC or staff interface) + `lastseen` datetime default NULL, -- last time a patron has been seen (connected at the OPAC or staff interface) UNIQUE KEY `cardnumber` (`cardnumber`), PRIMARY KEY `borrowernumber` (`borrowernumber`), KEY `categorycode` (`categorycode`), -- 2.39.5