cowrie/doc/sql/update7.sql

10 lines
264 B
SQL

CREATE TABLE IF NOT EXISTS `downloads` (
`id` int(11) NOT NULL auto_increment,
`session` CHAR( 32 ) NOT NULL,
`timestamp` datetime NOT NULL,
`url` text NOT NULL,
`outfile` text NOT NULL,
PRIMARY KEY (`id`),
KEY `session` (`session`,`timestamp`)
) ;