From 0997d6013417dfb70f27187c7a477ee7f9d5431e 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 Content-Type: text/plain; charset=utf-8 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 --- 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 e9c60aa..b72bea4 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -1670,7 +1670,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) `lang` varchar(25) NOT NULL default 'default', -- lang to use to send notices to this patron `login_attempts` int(4) default 0, -- number of failed login attemps `overdrive_auth_token` text default NULL, -- persist OverDrive auth token -- 2.1.4