mirror of
https://github.com/aljazceru/cowrie.git
synced 2025-12-17 05:54:21 +01:00
New mysql table "downloads", see doc/sql/update7.sql git-svn-id: https://kippo.googlecode.com/svn/trunk@224 951d7100-d841-11de-b865-b3884708a8e2
10 lines
264 B
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`)
|
|
) ;
|