File size: 816B
DROP TABLE IF EXISTS `guest`;
CREATE TABLE `guest` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_user` int(11) NOT NULL DEFAULT '0',
`time` int(11) NOT NULL,
`msg` varchar(1024) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
`dir` varchar(12) DEFAULT NULL,
`fon` int(3) DEFAULT '31',
`cit` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `time` (`time`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
DROP TABLE IF EXISTS `guest_glum`;
CREATE TABLE `guest_glum` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_user` int(11) NOT NULL DEFAULT '0',
`time` int(11) NOT NULL,
`dir` varchar(12) DEFAULT NULL,
`img` int(11) DEFAULT '1',
`margin_left` int(11) DEFAULT '0',
`id_post` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;