mirror of https://github.com/cowrie/cowrie.git
add shasum to install data
This commit is contained in:
parent
6e375f72ef
commit
b328876e16
|
@ -56,6 +56,7 @@ CREATE TABLE `downloads` (
|
||||||
`timestamp` datetime NOT NULL,
|
`timestamp` datetime NOT NULL,
|
||||||
`url` text NOT NULL,
|
`url` text NOT NULL,
|
||||||
`outfile` text NOT NULL,
|
`outfile` text NOT NULL,
|
||||||
|
`shasum` varchar(64) default NULL,
|
||||||
PRIMARY KEY (`id`),
|
PRIMARY KEY (`id`),
|
||||||
KEY `session` (`session`,`timestamp`)
|
KEY `session` (`session`,`timestamp`)
|
||||||
) ;
|
) ;
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
ALTER TABLE `downloads` ADD `shasum` VARCHAR(64) DEFAULT NULL;
|
Loading…
Reference in New Issue