Shady, DROP DATABASE `users`;
CREATE TABLE `users` (
`id` int(11) NOT NULL auto_increment,
`movings` int(11) NOT NULL default '0',
`place` varchar(30) NOT NULL,
`set_user` text NOT NULL,
`set_forum` text NOT NULL,
`set_chat` text NOT NULL,
`karma` int(11) NOT NULL default '0',
`karma_time` int(11) NOT NULL default '0',
`plus_minus` varchar(40) NOT NULL default '0|0',
`karma_off` int(1) NOT NULL,
PRIMARY KEY (`id`),
) ENGINE=MyISAM DEFAULT CHARSET=utf8;