CREATE TABLE IF NOT EXISTS `dnevniki` (
  `id` int(11) NOT NULL auto_increment,
  `userid` int(11) NOT NULL,
  `text` text NOT NULL,
  `zag` text NOT NULL,
  `vr` int(12) NOT NULL,
  `count` int(11) NOT NULL,
  `type` int(1) NOT NULL,
  `otvetid` int(11) NOT NULL,
  `komid` int(11) NOT NULL,
  `otvet` text NOT NULL,
  `komcount` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=31 ;










