Mysql warning - why?

Associate
Joined
26 Nov 2004
Posts
1,480
Location
Gran Canaria
create table nubs (name varchar(30) primary key, des text not null ) type = innodb;

Query OK, 0 rows affected, 1 warning (0.00 sec)

Why do i receive this warning when creating this table? Is there some way I can view mysql warnings?

TIA
 
Sorry you haddent given it a default value - I read it too fast :P you need to use engine=innodb to get rid of the warning. To see warnings use 'show warnings;'
 
Back
Top Bottom