Hi,
I am trying out this tutorial:
http://www.rails4days.pwp.blueyonder...Rails4Days.pdf
CREATE TABLE 'categories' (
'id' smallint(5) unsigned NOT NULL auto_increment,
'category' varchar(20) NOT NULL default '',
'created_on' timestamp(14) NOT NULL,
'updated_on' timestamp(14) NOT NULL,
PRIMARY KEY ('id'),
UNIQUE KEY 'category_key' ('category')
) TYPE=MyISAM COMMENT='List of categories';
It gives me an error, saying SQL execution error # 1064.
Anyone know why?
