I\'ve got a table that collects forms submitted from our website, but for some reason, when they created the table, they didn\'t put a timestamp in the table. I want it to e
This works for me...
ALTER TABLE [accounts] ADD [user_registered] DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ;