Yes …
simply set default CURRENT_TIMESTAMP and time of creation wil be inserted.
A more advanced one:
timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP
will do as the first, but when ANY row is updated the timestamp field will be updated too.
Refer to the MySQL documentation for more details. Search for “CURRENT_TIMESTAMP”
Was that the answer to your question ??