The main file table (updated by the .torrent generator)

svn path=/trunk/boinc/; revision=13297
This commit is contained in:
Janus B. Kristensen 2007-08-11 10:30:38 +00:00
parent c148085143
commit 4f093d90e9
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
CREATE TABLE `bittorrent_files` (
`id` int(11) NOT NULL auto_increment,
`filename` varchar(256) default NULL,
`info_hash` varbinary(22) default NULL,
`timestamp` int(14) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `filename` (`filename`),
KEY `info_hash` (`info_hash`)
) ENGINE=MEMORY;