CREATE TABLE IF NOT EXISTS `sed_guestbook` (
  `gb_id` int(11) NOT NULL AUTO_INCREMENT,
  `gb_answer` text COLLATE utf8_unicode_ci NOT NULL,
  `gb_author` varchar(24) COLLATE utf8_unicode_ci NOT NULL,
  `gb_authorid` int(11) DEFAULT NULL,
  `gb_text` text COLLATE utf8_unicode_ci NOT NULL,
  `gb_date` int(11) NOT NULL,
  `gb_email` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
  `gb_website` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
  PRIMARY KEY (`gb_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=6 ;