[Koha-bugs] [Bug 24379] Borrowers Login Attempts is NULL

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed May 6 00:20:00 CEST 2020


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24379

--- Comment #6 from Katrin Fischer <katrin.fischer at bsz-bw.de> ---
I think it might have been fixed already:

kohastructure.sql:
`login_attempts` int(4) default 0, -- number of failed login attemps

updatedatabase:
14478 $DBversion = '16.12.00.037'; - with default 0

14666 $DBversion = '17.06.00.009'; - is a little weird:
14668     $dbh->do(q{
14669         ALTER TABLE borrowers MODIFY COLUMN login_attempts int(4) AFTER
lang;
14670     });
14671     $dbh->do(q{
14672         ALTER TABLE deletedborrowers MODIFY COLUMN login_attempts int(4)
AFTER lang;
14673     });

Is it possible the 17.06 change broke the default 0 for updated installations?
That could explain, why you don't see the issue on master.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list