Can someone help me figure out how to create a table in phpmyadmin. I did it before to add a store comments section to my database but am trying to do it now to add a store polls and store polloptions table. I don't remeber exactly what I did.
Here's the code I was using before when I added the store comment table.
CREATE TABLE ".$prefix."store_comments (
name varchar(100) NOT NULL,
product varchar(60) NOT NULL default '',
stars tinyint(1) DEFAULT '0' NOT NULL,
status tinyint(1) DEFAULT '0' NOT NULL,
comments text NOT NULL,
id int(60) NOT NULL auto_increment,
PRIMARY KEY (id)
I have another thread going as to why i'd like to create these tables. You can view it here
Thanks for all the help in advance.