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

(-)a/installer/data/mysql/updatedatabase.pl (-3 / +2 lines)
Lines 14666-14675 if( CheckVersion( $DBversion ) ) { Link Here
14666
$DBversion = '17.06.00.009';
14666
$DBversion = '17.06.00.009';
14667
if( CheckVersion( $DBversion ) ) {
14667
if( CheckVersion( $DBversion ) ) {
14668
    $dbh->do(q{
14668
    $dbh->do(q{
14669
        ALTER TABLE borrowers MODIFY COLUMN login_attempts int(4) AFTER lang;
14669
        ALTER TABLE borrowers MODIFY COLUMN login_attempts int(4) DEFAULT 0 AFTER lang;
14670
    });
14670
    });
14671
    $dbh->do(q{
14671
    $dbh->do(q{
14672
        ALTER TABLE deletedborrowers MODIFY COLUMN login_attempts int(4) AFTER lang;
14672
        ALTER TABLE deletedborrowers MODIFY COLUMN login_attempts int(4) DEFAULT 0 AFTER lang;
14673
    });
14673
    });
14674
14674
14675
    SetVersion( $DBversion );
14675
    SetVersion( $DBversion );
14676
- 

Return to bug 24379