Bug 17234: Follow up to handle new problems
Bug 16276 added two more ALTER IGNORES. This removes them. Signed-off-by: Mark Tompsett <mtompset@hotmail.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
This commit is contained in:
parent
acf425bbbc
commit
4ea484677e
1 changed files with 2 additions and 2 deletions
|
@ -12984,10 +12984,10 @@ if ( CheckVersion($DBversion) ) {
|
|||
$DBversion = "16.06.00.027";
|
||||
if ( CheckVersion($DBversion) ) {
|
||||
$dbh->do(q{
|
||||
ALTER IGNORE TABLE borrowers ADD COLUMN lastseen datetime default NULL AFTER updated_on;
|
||||
ALTER TABLE borrowers ADD COLUMN lastseen datetime default NULL AFTER updated_on;
|
||||
});
|
||||
$dbh->do(q{
|
||||
ALTER IGNORE TABLE deletedborrowers ADD COLUMN lastseen datetime default NULL AFTER updated_on;
|
||||
ALTER TABLE deletedborrowers ADD COLUMN lastseen datetime default NULL AFTER updated_on;
|
||||
});
|
||||
$dbh->do(q{
|
||||
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');
|
||||
|
|
Loading…
Reference in a new issue