try this:
`creation_date` datetime(0) DEFAULT CURRENT_TIMESTAMP(0),
`modif_date` datetime(0) DEFAULT CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0),
This "0" is the microsecond precision (can be from 0 to 6).
Alternatively do not use datetime datatype but timestamp. It will work with it.