CREATE TABLE IF NOT EXISTS `icq` (
  `id` int(11) NOT NULL auto_increment,
  `realid` int(2) NOT NULL,
  `type` char(3) NOT NULL default '',
  `num` text NOT NULL,
  `sum` text NOT NULL,
  PRIMARY KEY  (`id`),
  FULLTEXT KEY `type` (`type`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8