Файл: vfermu.ru/worldkassa/mysql.sql
Строк: 17
CREATE TABLE IF NOT EXISTS `worldkassa` (
`id` int(11) unsigned NOT NULL
AUTO_INCREMENT ,
`id_user` int(11) unsigned NOT NULL ,
`id_bill`
int(11) unsigned NOT NULL ,
`time` int(11) unsigned NOT NULL ,
`time_oplata` int(11) unsigned DEFAULT '0' ,
`summa` decimal(11,2) NOT
NULL DEFAULT '0.00' ,
`type` enum('0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', '10') DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT
CHARSET=utf8 COMMENT='Статистика платежей через
WorldKassa' AUTO_INCREMENT=1 ;