you could do something like this:
CREATE TABLE X (
last_changed timestamp,
create_time timestamp,
.....);
If you have two columns of type timestamp, only the first one will change on each update. The other one will settle on the date the row was created and stay unchanged.
Hope I've explained that clear.