https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10459
--- Comment #52 from Marcel de Rooy <[email protected]> --- (In reply to M. Tompsett from comment #49) > I went with an updated_on, as created_on is static, and the point was for > diagnosis to know when something was last done with the borrower record. And > I couldn't figure out how to get two time stamps using MySQL to auto-fill (a > created_on and an updated_on) in the same table. What about filling created_on once in AddMember ? Mysql accepts: `stamp1` timestamp NULL DEFAULT NULL, `stamp2` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://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/
