When I use SHOW CREATE TABLE USERS on my created table, I see this:
Code:
mysql> show create table users;
+-------+-------------------------------------------
| Table | Create Table
+-------+-------------------------------------------
| users | CREATE TABLE `users` (
`userid` int(11) NOT NULL AUTO_INCREMENT,
`verified` tinyint(1) DEFAULT NULL,
`name` varchar(30) DEFAULT NULL,
PRIMARY KEY (`userid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
+-------+-------------------------------------------
Man, your experience sure make me want to learn PHPMyAdmin....
NOT!