mirror of https://github.com/BOINC/boinc.git
The main file table (updated by the .torrent generator)
svn path=/trunk/boinc/; revision=13297
This commit is contained in:
parent
c148085143
commit
4f093d90e9
|
@ -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;
|
Loading…
Reference in New Issue