Файл: install/db_tables/jurnal_system.sql
Строк: 9
CREATE TABLE IF NOT EXISTS `jurnal_system` (
`id` int(11) NOT NULL
AUTO_INCREMENT,
`time` int(11) NOT NULL DEFAULT '0',
`type`
varchar(128) NOT NULL DEFAULT '',
`read` set('0','1') NOT NULL DEFAULT
'0',
`id_user` int(11) NOT NULL DEFAULT '0',
`moderator` int(11) NOT
NULL DEFAULT '0',
`moderator_time` int(11) NOT NULL DEFAULT '0',
`msg`
varchar(255) NOT NULL DEFAULT '',
`id_kont` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `read` (`read`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8;