# ********************************************************************** # torrentdb - Copyright (C) 2004 - r00t # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # *********************************************************************** # # phpMyAdmin SQL Dump # version 2.5.6 # http://www.phpmyadmin.net # # Host: localhost # Generation Time: Jun 14, 2004 at 12:26 AM # Server version: 4.0.18 # PHP Version: 4.3.4 # # Database : `torrentdb` # # -------------------------------------------------------- # # Table structure for table `torrentdb` # CREATE TABLE `torrentdb` ( `id` int(11) NOT NULL auto_increment, `infohash` varchar(40) default NULL, `name` text, `url` text, `tracker` text, `size` int(11) default NULL, `date` int(11) default NULL, `blocksize` int(11) default NULL, `d_scrapeurl` text, `d_status` tinyint(4) default NULL, `d_seeds` tinyint(4) default NULL, `d_peers` tinyint(4) default NULL, `creationdate` int(11) default NULL, `mtime` int(11) default NULL, `ctime` int(11) default NULL, `d_timestamp` int(11) default NULL, PRIMARY KEY (`id`), KEY `infohash` (`infohash`) ) TYPE=MyISAM AUTO_INCREMENT=22634 ;