Mysql по умолчанию запрещает создание колонок имеющие в default и in update значение current_timestamp.
То есть при попытке создать
`creationtime` timestamp NULL default CURRENT_TIMESTAMP ,
`lastupdate` timestamp NOT NULL on update CURRENT_TIMESTAMP,
вы получите ошибку #1293 - Incorrect table definition; there can be only one TIMESTAMP column with
(
Read more... )