views:

289

answers:

1

Hi,

Is there a built-in row-versioning mechanism for MySQL? Something similar to the 'timestamp' column in MS SqlServer.

+1  A: 

If you add a "timestamp" field, it will update it automatically whenever you update the row - not exactly versioning though, but sounds like it might be what you are after.

benlumley
Thanks for that. The 'timestamp' data type should help.
alwayslearning