View | Details | Raw Unified | Return to bug 17234
Collapse All | Expand All

(-)a/installer/data/mysql/updatedatabase.pl (-3 / +2 lines)
Lines 12983-12992 if ( CheckVersion($DBversion) ) { Link Here
12983
$DBversion = "16.06.00.027";
12983
$DBversion = "16.06.00.027";
12984
if ( CheckVersion($DBversion) ) {
12984
if ( CheckVersion($DBversion) ) {
12985
    $dbh->do(q{
12985
    $dbh->do(q{
12986
        ALTER IGNORE TABLE borrowers ADD COLUMN lastseen datetime default NULL AFTER updated_on;
12986
        ALTER TABLE borrowers ADD COLUMN lastseen datetime default NULL AFTER updated_on;
12987
    });
12987
    });
12988
    $dbh->do(q{
12988
    $dbh->do(q{
12989
        ALTER IGNORE TABLE deletedborrowers ADD COLUMN lastseen datetime default NULL AFTER updated_on;
12989
        ALTER TABLE deletedborrowers ADD COLUMN lastseen datetime default NULL AFTER updated_on;
12990
    });
12990
    });
12991
    $dbh->do(q{
12991
    $dbh->do(q{
12992
        INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('TrackLastPatronActivity', '0', 'If set, the field borrowers.lastseen will be updated everytime a patron is seen', NULL, 'YesNo');
12992
        INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES ('TrackLastPatronActivity', '0', 'If set, the field borrowers.lastseen will be updated everytime a patron is seen', NULL, 'YesNo');
12993
- 

Return to bug 17234