http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8431 Chris Cormack <chris@bigballofwax.co.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Signed Off CC| |chris@bigballofwax.co.nz --- Comment #4 from Chris Cormack <chris@bigballofwax.co.nz> --- Tested * Upgrade to 3.09.00.XXX done (Increase the maximum size of a borrower attribute value) Checked the db borrower_attributes | CREATE TABLE `borrower_attributes` ( `borrowernumber` int(11) NOT NULL, `code` varchar(10) NOT NULL, `attribute` varchar(255) DEFAULT NULL, `password` varchar(64) DEFAULT NULL, KEY `borrowernumber` (`borrowernumber`), KEY `code_attribute` (`code`,`attribute`), CONSTRAINT `borrower_attributes_ibfk_1` FOREIGN KEY (`borrowernumber`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `borrower_attributes_ibfk_2` FOREIGN KEY (`code`) REFERENCES `borrower_attribute_types` (`code`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 | -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.