mirror of https://github.com/cowrie/cowrie.git
10 lines
264 B
MySQL
10 lines
264 B
MySQL
|
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`)
|
||
|
) ;
|