CREATE TABLE IF NOT EXISTS `refb` (
  `id` int(11) NOT NULL
auto_increment,
  `login` text,
  `prcen` bigint(20) default NULL,
 
`realcen` bigint(20) default NULL,
  `ids` text character set utf8 collate
utf8_unicode_ci NOT NULL,
  `ts` bigint(20) default NULL,
  PRIMARY KEY 
(`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=92 ;