From aa453e7cf37027891efaf6ba6775f599e8bdc6aa 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 e3bf4fc8bb821456305d587a8d49fe39b07abd06) Signed-off-by: Fridolin Somers (cherry picked from commit ad5d72658b21b7c7fe163b411ec637300ee528c2) 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 b51b9ab47f..554468cc1a 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -632,7 +632,7 @@ CREATE TABLE `deletedborrowers` ( -- stores data related to the patrons/borrower `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) KEY borrowernumber (borrowernumber), KEY `cardnumber` (`cardnumber`), KEY `sms_provider_id` (`sms_provider_id`) -- 2.39.5