Here's an example:
CREATE TABLE `review_article` (
`article_id` int(10) unsigned zerofill NOT NULL auto_increment,
`reg_time` int(20) NOT NULL default '0',
`headline` varchar(150) NOT NULL default '0',
`main_text` text,
PRIMARY KEY (`article_id`)
) TYPE=MyISAM;
Look at the top line article_id.
The field needs to be an int, so you can't have the s before your id's 😉
knutm