07-18-2008, 06:19 PM
|
#2 (permalink)
|
|
The Acquainted
Join Date: May 2008
Posts: 175
Thanks: 9
|
Try this:
Code:
CREATE TABLE IF NOT EXISTS `users` ( `id` INT( 10 ) NOT NULL AUTO_INCREMENT ,
`username` VARCHAR( 255 ) NOT NULL ,
`password` VARCHAR( 255 ) NOT NULL ,
`email` TEXT NOT NULL ,
`ip` VARCHAR( 16 ) NOT NULL ,
`group` INT( 1 ) NOT NULL DEFAULT '1',
`banned` VARCHAR( 5 ) NOT NULL DEFAULT 'n',
PRIMARY KEY ( `id` )
) ENGINE = MYISAM
__________________
There are No Stupid Questions. But there a LOT of Inquisitive Idiots.
|
|
|