CREATE TABLE `cUser_table` (
`id` bigint(20) NOT NULL auto_increment,
`username` text NOT NULL,
`password` text NOT NULL,
`random` bigint(20) NOT NULL default '0',
`unique` text NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM COMMENT='cUser - User Table' AUTO_INCREMENT=1 ;
|