I have an id field in a mysql db with zerofill, but when I try to access the new id right after the save() method, the id is returned with no leading zeros.
It is correctly inserted in the db (000003), but like I said, the last insert id returns it without the zeros so 000003 get displayed as 3, which messes up how I display my id’s in some cases