From 4f093d90e947d8f4f621049a7c0c6d2d3ac30873 Mon Sep 17 00:00:00 2001 From: "Janus B. Kristensen" Date: Sat, 11 Aug 2007 10:30:38 +0000 Subject: [PATCH] The main file table (updated by the .torrent generator) svn path=/trunk/boinc/; revision=13297 --- html/bt/database/bittorrent_files.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 html/bt/database/bittorrent_files.sql diff --git a/html/bt/database/bittorrent_files.sql b/html/bt/database/bittorrent_files.sql new file mode 100644 index 0000000000..eaabd2cc0e --- /dev/null +++ b/html/bt/database/bittorrent_files.sql @@ -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; \ No newline at end of file