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

--- Comment #25 from Katrin Fischer <[email protected]> ---
It looks like the borrower_modifications table can also be affected as we had
this one failing with the known "Row size too large." error:

$DBversion = "16.12.00.001";
if ( CheckVersion($DBversion) ) {
    $dbh->do(q{
        ALTER TABLE borrower_modifications
        ADD COLUMN extended_attributes text DEFAULT NULL
        AFTER privacy
    });

    print "Upgrade to $DBversion done (Bug 17767 - Let
Koha::Patron::Modification handle extended attributes)\n";
    SetVersion($DBversion);
}

Is there a way we could fix this once and for all? Or at least provide
information/warning to users?

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
_______________________________________________
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/

Reply via email to