-- MySQL dump 10.9 -- -- Host: localhost Database: liststats -- ------------------------------------------------------ -- Server version 4.1.20 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `info_text` -- DROP TABLE IF EXISTS `info_text`; CREATE TABLE `info_text` ( `xid` int(11) NOT NULL auto_increment, `sum` varchar(32) default NULL, `info` text, UNIQUE KEY `xid` (`xid`), UNIQUE KEY `sum` (`sum`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Table structure for table `list` -- DROP TABLE IF EXISTS `list`; CREATE TABLE `list` ( `xid` int(11) NOT NULL auto_increment, `list` varchar(128) default NULL, `asof` date default NULL, `count` int(11) default NULL, `dcount` int(11) default NULL, `moderators` text, `domain` varchar(64) default NULL, `info` int(11) default '0', `status` varchar(8) default 'unknown', `posts` int(11) default '-1', UNIQUE KEY `xid` (`xid`), UNIQUE KEY `list` (`list`,`asof`), KEY `index_list` (`list`), KEY `index_asof` (`asof`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Table structure for table `list_summary` -- DROP TABLE IF EXISTS `list_summary`; CREATE TABLE `list_summary` ( `xid` int(11) NOT NULL auto_increment, `summary_set` varchar(16) default NULL, `list` varchar(128) default NULL, `list_xid` int(11) default '0', `interval_start` date default NULL, `interval_end` date default NULL, `count` int(11) default '-1', `mean_count` float default '-1', `dcount` int(11) default '-1', `mean_dcount` float default '-1', `posts` int(11) default '-1', `mean_posts` float default '-1', UNIQUE KEY `xid` (`xid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Table structure for table `loadinfo` -- DROP TABLE IF EXISTS `loadinfo`; CREATE TABLE `loadinfo` ( `xid` int(11) NOT NULL auto_increment, `asof` date NOT NULL default '0000-00-00', UNIQUE KEY `xid` (`xid`), UNIQUE KEY `asof` (`asof`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;