I have the following table schema;
CREATE TABLE `db1`.`sms_queue` ( `Id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, `Message` VARCHAR(160) NOT NULL DEFAUL
As of MySQL 5.6 its easy-peasy... give it a try:
create table tweet ( id integer not null auto_increment primary key, stamp_created timestamp default now(), stamp_updated timestamp default now() on update now(), message varchar(163) )