add shasum to install data

This commit is contained in:
Michel Oosterhof 2015-02-10 12:04:20 +00:00
parent 6e375f72ef
commit b328876e16
2 changed files with 2 additions and 0 deletions

View File

@ -56,6 +56,7 @@ CREATE TABLE `downloads` (
`timestamp` datetime NOT NULL,
`url` text NOT NULL,
`outfile` text NOT NULL,
`shasum` varchar(64) default NULL,
PRIMARY KEY (`id`),
KEY `session` (`session`,`timestamp`)
) ;

1
doc/sql/update8.sql Normal file
View File

@ -0,0 +1 @@
ALTER TABLE `downloads` ADD `shasum` VARCHAR(64) DEFAULT NULL;