https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=24379
--- Comment #6 from Katrin Fischer <[email protected]> --- 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. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
