mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-05 07:20:58 +08:00
2403 lines
1.8 MiB
MySQL
2403 lines
1.8 MiB
MySQL
|
|
-- MySQL dump 10.13 Distrib 5.7.19, for Linux (x86_64)
|
|||
|
|
--
|
|||
|
|
-- Host: localhost Database: A@?88xE?qn3h
|
|||
|
|
-- ------------------------------------------------------
|
|||
|
|
-- Server version 5.7.19-log
|
|||
|
|
|
|||
|
|
/*!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 */;
|
|||
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|||
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|||
|
|
/*!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 */;
|
|||
|
|
-- MySQL dump 10.13 Distrib 5.7.19, for Linux (x86_64)
|
|||
|
|
--
|
|||
|
|
-- Host: localhost Database: nexus_php_php8
|
|||
|
|
-- ------------------------------------------------------
|
|||
|
|
-- Server version 5.7.19-log
|
|||
|
|
|
|||
|
|
/*!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 */;
|
|||
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|||
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|||
|
|
/*!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 */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Current Database: `nexus_php_php8`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `nexus_php_php8` /*!40100 DEFAULT CHARACTER SET utf8 */;
|
|||
|
|
|
|||
|
|
USE `nexus_php_php8`;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `adclicks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `adclicks`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `adclicks` (
|
|||
|
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`adid` int(11) unsigned DEFAULT NULL,
|
|||
|
|
`userid` int(11) unsigned DEFAULT NULL,
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `adclicks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `adclicks` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `adclicks` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `adclicks` VALUES (1,1,2,'2021-01-07 09:21:25'),(2,1,2,'2021-01-20 17:13:47');
|
|||
|
|
/*!40000 ALTER TABLE `adclicks` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `adminpanel`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `adminpanel`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `adminpanel` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(128) NOT NULL DEFAULT '',
|
|||
|
|
`url` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`info` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `adminpanel`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `adminpanel` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `adminpanel` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `adminpanel` VALUES (1,'Add user','adduser.php','Create new user account'),(3,'Reset Users Password','reset.php','Rest lost Passwords'),(4,'Mass PM','staffmess.php','Send PM to all users'),(6,'Poll overview','polloverview.php','View poll votes'),(7,'Warned users','warned.php','See all warned users on tracker'),(8,'FreeLeech','freeleech.php','Set ALL Torrents At Special State.'),(9,'FAQ Management','faqmanage.php','Edit/Add/Delete FAQ Page'),(10,'Rules Management','modrules.php','Edit/Add/Delete RULES Page'),(11,'Category Manage','catmanage.php','Manage torrents categories at your site');
|
|||
|
|
/*!40000 ALTER TABLE `adminpanel` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `advertisements`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `advertisements`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `advertisements` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`enabled` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
`type` enum('bbcodes','xhtml','text','image','flash') NOT NULL,
|
|||
|
|
`position` enum('header','footer','belownav','belowsearchbox','torrentdetail','comment','interoverforums','forumpost','popup') NOT NULL,
|
|||
|
|
`displayorder` tinyint(3) NOT NULL DEFAULT '0',
|
|||
|
|
`name` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`parameters` text NOT NULL,
|
|||
|
|
`code` text NOT NULL,
|
|||
|
|
`starttime` datetime NOT NULL,
|
|||
|
|
`endtime` datetime NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `advertisements`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `advertisements` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `advertisements` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `advertisements` VALUES (1,1,'text','torrentdetail',0,'测试广告','a:3:{s:7:\"content\";s:30:\"这是一个广告,快点我\";s:4:\"link\";s:19:\"http://nexusphp.cn/\";s:4:\"size\";s:4:\"40pt\";}','<a href=\"adredir.php?id=1&url=http%3A%2F%2Fnexusphp.cn%2F\" target=\"_blank\"><span style=\"font-size: 40pt\">这是一个广告,快点我</span></a>','2020-12-20 00:00:00','2021-12-20 00:00:00');
|
|||
|
|
/*!40000 ALTER TABLE `advertisements` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `agent_allowed_exception`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `agent_allowed_exception`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `agent_allowed_exception` (
|
|||
|
|
`family_id` tinyint(3) unsigned NOT NULL,
|
|||
|
|
`name` varchar(100) NOT NULL DEFAULT '',
|
|||
|
|
`peer_id` varchar(20) NOT NULL,
|
|||
|
|
`agent` varchar(100) NOT NULL,
|
|||
|
|
`comment` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
KEY `family_id` (`family_id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `agent_allowed_exception`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `agent_allowed_exception` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `agent_allowed_exception` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `agent_allowed_exception` VALUES (16,'uTorrent 1.80B (Build 6838)','-UT180B-','uTorrent/180B(6838)','buggy build that always seeding bad request');
|
|||
|
|
/*!40000 ALTER TABLE `agent_allowed_exception` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `agent_allowed_family`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `agent_allowed_family`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `agent_allowed_family` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`family` varchar(50) NOT NULL DEFAULT '',
|
|||
|
|
`start_name` varchar(100) NOT NULL DEFAULT '',
|
|||
|
|
`peer_id_pattern` varchar(200) NOT NULL,
|
|||
|
|
`peer_id_match_num` tinyint(3) unsigned NOT NULL,
|
|||
|
|
`peer_id_matchtype` enum('dec','hex') NOT NULL DEFAULT 'dec',
|
|||
|
|
`peer_id_start` varchar(20) NOT NULL,
|
|||
|
|
`agent_pattern` varchar(200) NOT NULL,
|
|||
|
|
`agent_match_num` tinyint(3) unsigned NOT NULL,
|
|||
|
|
`agent_matchtype` enum('dec','hex') NOT NULL DEFAULT 'dec',
|
|||
|
|
`agent_start` varchar(100) NOT NULL,
|
|||
|
|
`exception` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`allowhttps` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`comment` varchar(200) NOT NULL DEFAULT '',
|
|||
|
|
`hits` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `agent_allowed_family`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `agent_allowed_family` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `agent_allowed_family` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `agent_allowed_family` VALUES (1,'Azureus 2.5.0.4','Azureus 2.5.0.4','/^-AZ2504-/',0,'dec','-AZ2504-','/^Azureus 2.5.0.4/',0,'dec','Azureus 2.5.0.4','no','yes','',0),(2,'uTorrent 1.6.1','uTorrent 1.6.1','/^-UT1610-/',0,'dec','-UT1610-','/^uTorrent\\/1610/',0,'dec','uTorrent/1610','no','no','',0),(3,'Bittorrent 6.x','Bittorrent 6.0.1','/^M6-([0-9])-([0-9])--/',2,'dec','M6-0-1--','/^BitTorrent\\/6([0-9])([0-9])([0-9])/',3,'dec','BitTorrent/6010','no','yes','',0),(4,'Deluge 0.x','Deluge 0.5.8.9','/^-DE0([0-9])([0-9])([0-9])-/',3,'dec','-DE0589-','/^Deluge 0\\.([0-9])\\.([0-9])\\.([0-9])/',3,'dec','Deluge 0.5.8.9','no','yes','',0),(5,'Transmission1.x','Transmission 1.06 (build 5136)','/^-TR1([0-9])([0-9])([0-9])-/',3,'dec','-TR1060-','/^Transmission\\/1\\.([0-9])([0-9])/',3,'dec','Transmission/1.06','no','yes','',0),(6,'RTorrent 0.x(with libtorrent 0.x)','rTorrent 0.8.0 (with libtorrent 0.12.0)','/^-lt([0-9A-E])([0-9A-E])([0-9A-E])([0-9A-E])-/',4,'hex','-lt0C00-','/^rtorrent\\/0\\.([0-9])\\.([0-9])\\/0\\.([1-9][0-9]*)\\.(0|[1-9][0-9]*)/',4,'dec','rtorrent/0.8.0/0.12.0','no','no','',0),(7,'Rufus 0.x','Rufus 0.6.9','',0,'dec','','/^Rufus\\/0\\.([0-9])\\.([0-9])/',2,'dec','Rufus/0.6.9','no','no','',0),(8,'Azureus 3.x','Azureus 3.0.5.0','/^-AZ3([0-9])([0-9])([0-9])-/',3,'dec','-AZ3050-','/^Azureus 3\\.([0-9])\\.([0-9])\\.([0-9])/',3,'dec','Azureus 3.0.5.0','no','yes','',0),(9,'uTorrent 1.7.x','uTorrent 1.7.5','/^-UT17([0-9])([0-9])-/',2,'dec','-UT1750-','/^uTorrent\\/17([0-9])([0-9])/',2,'dec','uTorrent/1750','no','yes','',0),(10,'BitRocket 0.x','BitRocket 0.3.3(32)','/^-BR0([0-9])([1-9][0-9]*)-/',2,'dec','-BR0332-','/^BitRocket\\/0\\.([0-9])\\.([0-9])\\(([1-9][0-9]*)\\) libtorrent\\/0\\.([1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)/',6,'dec','BitRocket/0.3.3(32) libtorrent/0.13.0.0','no','yes','',0),(11,'MLDonkey 2.9.x','MLDonkey 2.9.2','/^-ML2\\.9\\.([0-9])-/',1,'dec','-ML2.9.2-','/^MLDonkey\\/2\\.9\\.([0-9])/',1,'dec','MLDonkey/2.9.2','no','yes','',0),(12,'uTorrent 1.8.x','uTorrent 1.8.0','/^-UT18([0-9])([0-9])-/',2,'dec','-UT1800-','/^uTorrent\\/18([0-9])([0-9])/',2,'dec','uTorrent/1800','no','yes','',0),(13,'Azureus 4.x','Vuze 4.0.0.2','/^-AZ4([0-9])([0-9])([0-9])-/',3,'dec','-AZ4002-','/^Azureus 4\\.([0-9])\\.([0-9])\\.([0-9])/',3,'dec','Azureus 4.0.0.2','no','yes','',0),(14,'SymTorrent','','',0,'dec','','/^SymTorrent/',0,'dec','SymTorrent','no','no','',0),(15,'Deluge 1.x','Deluge 1.1.6','/^-DE1([0-9])([0-9])([0-9])-/',3,'dec','-DE1160-','/^Deluge 1\\.([0-9])\\.([0-9])/',2,'dec','Deluge 1.1.6','no','yes','',0),(16,'uTorrent 1.8xB','uTorrent 1.80 Beta (build 9137)','/^-UT18([0-9])B-/',1,'dec','-UT180B-','/^uTorrent\\/18([0-9])B\\(([1-9][0-9]*)\\)/',2,'dec','uTorrent/180B(9137)','no','yes','',0),(17,'uTorrent 2.x.x','uTorrent 2.0(build 17624)','/^-UT2([0-9])([0-9])([0-9])-/',3,'dec','-UT2000-','/^uTorrent\\/2([0-9])([0-9])([0-9])/',3,'dec','uTorrent/2000','no','yes','',0),(18,'Transmission2.x','Transmission 2.0','/^-TR2([0-9])([0-9])([0-9])-/',3,'dec','-TR2000-','/^Transmission\\/2\\.([0-9])([0-9])/',3,'dec','Transmission/2.00','no','yes','',0),(19,'uTorrent 3.x','uTorrent/3000','/^-UT3([0-9])([0-9])([0-9])-/',3,'dec','-UT3000-','/^uTorrent\\/3([0-9])([0-9])([0-9])/',3,'dec','uTorrent/3000','no','yes','',0),(20,'uTorrent 3.x','uTorrent','',0,'dec','-UT355W-','/^uTorrent/',0,'dec','uTorrent','no','yes','',1);
|
|||
|
|
/*!40000 ALTER TABLE `agent_allowed_family` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `allowedemails`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `allowedemails`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `allowedemails` (
|
|||
|
|
`id` int(10) NOT NULL AUTO_INCREMENT,
|
|||
|
|
`value` mediumtext NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `allowedemails`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `allowedemails` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `allowedemails` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `allowedemails` VALUES (1,'@st.zju.edu.cn @gstu.zju.edu.cn @fa.zju.edu.cn @zuaa.zju.edu.cn');
|
|||
|
|
/*!40000 ALTER TABLE `allowedemails` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `attachments`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `attachments`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `attachments` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`width` smallint(6) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`filename` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`dlkey` char(32) NOT NULL,
|
|||
|
|
`filetype` varchar(50) NOT NULL DEFAULT '',
|
|||
|
|
`filesize` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`location` varchar(255) NOT NULL,
|
|||
|
|
`downloads` mediumint(8) NOT NULL DEFAULT '0',
|
|||
|
|
`isimage` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`thumb` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `pid` (`userid`,`id`),
|
|||
|
|
KEY `dateline` (`added`,`isimage`,`downloads`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `attachments`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `attachments` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `attachments` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `attachments` VALUES (1,2,140,'2020-12-29 17:46:28','QQ图片20190414191742.jpg','a1d98328417f4bb9580bfe9d069b9fa7','image/jpeg',5012,'202012/20201229174628eba8aa985c03b98b032b952c46b955bb.jpg',0,1,0),(2,2,140,'2020-12-29 17:47:40','333.jpg','f137ad8525c0eac3985668dac1e61822','image/jpeg',5012,'202012/20201229174740eba8aa985c03b98b032b952c46b955bb.jpg',0,1,0),(3,3,1018,'2021-01-19 12:30:39','the-reckoning-trailer-1_h1080p.mov.jpg','58a46965d131e51e861ddd202bfe9d6d','image/jpeg',91403,'202101/202101191230394c2601a09a9fff5672c52015090167de.jpg',0,1,1),(4,3,980,'2021-01-19 13:15:00','background.jpg','52e4d1182c9ad1dc8da10eba334a0732','image/jpeg',108579,'202101/202101191315007841c80fa760a8d774027179127b3a18.jpg',0,1,1),(5,3,140,'2021-01-19 13:16:41','QQ图片20200815114049.jpg','cc448425377adb284dae52c8167f58af','image/jpeg',5007,'202101/2021011913164187b1853495807fdc46f043de222e10df.jpg',0,1,0),(6,3,980,'2021-01-19 13:18:21','background.jpg','1bf6b330056673e85c4658bc8c0f536c','image/jpeg',108579,'202101/202101191318217841c80fa760a8d774027179127b3a18.jpg',0,1,1),(7,3,1018,'2021-01-19 13:19:43','the-reckoning-trailer-1_h1080p.mov.jpg','91163d3bf1b6dd898a571895e2bd14f3','image/jpeg',91403,'202101/202101191319434c2601a09a9fff5672c52015090167de.jpg',0,1,1);
|
|||
|
|
/*!40000 ALTER TABLE `attachments` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `audiocodecs`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `audiocodecs`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `audiocodecs` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(30) NOT NULL,
|
|||
|
|
`image` varchar(255) NOT NULL,
|
|||
|
|
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `audiocodecs`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `audiocodecs` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `audiocodecs` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `audiocodecs` VALUES (1,'FLAC','',0),(2,'APE','',0),(3,'DTS','',0),(4,'MP3','',0),(5,'OGG','',0),(6,'AAC','',0),(7,'Other','',0);
|
|||
|
|
/*!40000 ALTER TABLE `audiocodecs` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `avps`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `avps`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `avps` (
|
|||
|
|
`arg` varchar(20) NOT NULL DEFAULT '',
|
|||
|
|
`value_s` text NOT NULL,
|
|||
|
|
`value_i` int(11) NOT NULL DEFAULT '0',
|
|||
|
|
`value_u` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`arg`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `avps`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `avps` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `avps` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `avps` VALUES ('lastcleantime','',0,1610106230),('last24','',947,1211708476),('lastcleantime2','',0,1610106230),('lastcleantime3','',0,1610106230),('lastcleantime4','',0,1610070016),('lastcleantime5','',0,1609823589);
|
|||
|
|
/*!40000 ALTER TABLE `avps` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `bannedemails`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `bannedemails`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `bannedemails` (
|
|||
|
|
`id` int(10) NOT NULL AUTO_INCREMENT,
|
|||
|
|
`value` mediumtext NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `bannedemails`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `bannedemails` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `bannedemails` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `bannedemails` VALUES (1,'@test.com');
|
|||
|
|
/*!40000 ALTER TABLE `bannedemails` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `bans`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `bans`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `bans` (
|
|||
|
|
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`addedby` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`comment` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`first` bigint(20) NOT NULL,
|
|||
|
|
`last` bigint(20) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `first_last` (`first`,`last`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `bans`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `bans` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `bans` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `bans` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `bitbucket`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `bitbucket`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `bitbucket` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`owner` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`public` enum('0','1') NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `bitbucket`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `bitbucket` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `bitbucket` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `bitbucket` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `blocks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `blocks`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `blocks` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`blockid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `userfriend` (`userid`,`blockid`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `blocks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `blocks` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `blocks` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `blocks` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `bookmarks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `bookmarks`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `bookmarks` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`torrentid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `userid_torrentid` (`userid`,`torrentid`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `bookmarks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `bookmarks` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `bookmarks` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `bookmarks` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `categories`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `categories`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `categories` (
|
|||
|
|
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`mode` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
|||
|
|
`class_name` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`name` varchar(30) NOT NULL,
|
|||
|
|
`image` varchar(255) NOT NULL,
|
|||
|
|
`sort_index` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `mode_sort` (`mode`,`sort_index`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=410 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `categories`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `categories` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `categories` VALUES (401,4,'c_movies','Movies','catsprites.png',0),(402,4,'c_tvseries','TV Series','catsprites.png',3),(403,4,'c_tvshows','TV Shows','catsprites.png',4),(404,4,'c_doc','Documentaries','catsprites.png',1),(405,4,'c_anime','Animations','catsprites.png',2),(406,4,'c_mv','Music Videos','catsprites.png',5),(407,4,'c_sports','Sports','catsprites.png',6),(408,4,'c_hqaudio','HQ Audio','catsprites.png',8),(409,4,'c_misc','Misc','catsprites.png',7);
|
|||
|
|
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `caticons`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `caticons`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `caticons` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(64) NOT NULL DEFAULT '',
|
|||
|
|
`folder` varchar(255) NOT NULL,
|
|||
|
|
`cssfile` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`multilang` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`secondicon` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`designer` varchar(50) NOT NULL DEFAULT '',
|
|||
|
|
`comment` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `caticons`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `caticons` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `caticons` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `caticons` VALUES (1,'SceneTorrents mod','scenetorrents/','pic/category/chd/scenetorrents/catsprites.css','yes','no','NexusPHP','Modified from SceneTorrents');
|
|||
|
|
/*!40000 ALTER TABLE `caticons` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `cheaters`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `cheaters`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `cheaters` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`torrentid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`uploaded` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`downloaded` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`anctime` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`seeders` mediumint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`leechers` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`hit` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`dealtby` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`dealtwith` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
`comment` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `cheaters`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `cheaters` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `cheaters` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `cheaters` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `chronicle`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `chronicle`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `chronicle` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`txt` text,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `added` (`added`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `chronicle`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `chronicle` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `chronicle` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `chronicle` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `codecs`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `codecs`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `codecs` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(30) NOT NULL,
|
|||
|
|
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `codecs`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `codecs` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `codecs` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `codecs` VALUES (1,'H.264',0),(2,'VC-1',0),(3,'Xvid',0),(4,'MPEG-2',0),(5,'Other',0);
|
|||
|
|
/*!40000 ALTER TABLE `codecs` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `comments`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `comments`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `comments` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`user` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`torrent` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`text` text,
|
|||
|
|
`ori_text` text,
|
|||
|
|
`editedby` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`editdate` datetime DEFAULT NULL,
|
|||
|
|
`offer` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `user` (`user`),
|
|||
|
|
KEY `torrent_id` (`torrent`,`id`),
|
|||
|
|
KEY `offer_id` (`offer`,`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `comments`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `comments` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `comments` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `comments` VALUES (1,2,1,'2020-12-29 04:39:23','hellow world','hellow world',0,'0000-00-00 00:00:00',0),(2,2,1,'2020-12-29 05:48:39','hellow world@@ [em9] ','hellow world',2,'2020-12-29 05:51:52',0),(3,2,1,'2020-12-29 17:47:44','[attach]f137ad8525c0eac3985668dac1e61822[/attach]\r\n\r\n [em6]','[attach]f137ad8525c0eac3985668dac1e61822[/attach]\r\n\r\n [em6]',0,'0000-00-00 00:00:00',0),(4,2,1,'2021-01-05 05:13:51','[em15]','[em15]',2,'2021-01-05 05:14:21',0),(5,2,1,'2021-01-05 05:14:05','咋加速?','咋加速?',0,'0000-00-00 00:00:00',0),(6,3,4,'2021-01-19 13:18:23','[attach]1bf6b330056673e85c4658bc8c0f536c[/attach]','[attach]1bf6b330056673e85c4658bc8c0f536c[/attach]',0,NULL,0);
|
|||
|
|
/*!40000 ALTER TABLE `comments` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `countries`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `countries`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `countries` (
|
|||
|
|
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(50) NOT NULL,
|
|||
|
|
`flagpic` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=108 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `countries`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `countries` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `countries` VALUES (1,'Sweden','sweden.gif'),(2,'United States of America','usa.gif'),(3,'Russia','russia.gif'),(4,'Finland','finland.gif'),(5,'Canada','canada.gif'),(6,'France','france.gif'),(7,'Germany','germany.gif'),(8,'中国','china.gif'),(9,'Italy','italy.gif'),(10,'Denmark','denmark.gif'),(11,'Norway','norway.gif'),(12,'United Kingdom','uk.gif'),(13,'Ireland','ireland.gif'),(14,'Poland','poland.gif'),(15,'Netherlands','netherlands.gif'),(16,'Belgium','belgium.gif'),(17,'Japan','japan.gif'),(18,'Brazil','brazil.gif'),(19,'Argentina','argentina.gif'),(20,'Australia','australia.gif'),(21,'New Zealand','newzealand.gif'),(23,'Spain','spain.gif'),(24,'Portugal','portugal.gif'),(25,'Mexico','mexico.gif'),(26,'Singapore','singapore.gif'),(70,'India','india.gif'),(65,'Albania','albania.gif'),(29,'South Africa','southafrica.gif'),(30,'South Korea','southkorea.gif'),(31,'Jamaica','jamaica.gif'),(32,'Luxembourg','luxembourg.gif'),(34,'Belize','belize.gif'),(35,'Algeria','algeria.gif'),(36,'Angola','angola.gif'),(37,'Austria','austria.gif'),(38,'Yugoslavia','yugoslavia.gif'),(39,'Western Samoa','westernsamoa.gif'),(40,'Malaysia','malaysia.gif'),(41,'Dominican Republic','dominicanrep.gif'),(42,'Greece','greece.gif'),(43,'Guatemala','guatemala.gif'),(44,'Israel','israel.gif'),(45,'Pakistan','pakistan.gif'),(46,'Czech Republic','czechrep.gif'),(47,'Serbia','serbia.gif'),(48,'Seychelles','seychelles.gif'),(50,'Puerto Rico','puertorico.gif'),(51,'Chile','chile.gif'),(52,'Cuba','cuba.gif'),(53,'Congo','congo.gif'),(54,'Afghanistan','afghanistan.gif'),(55,'Turkey','turkey.gif'),(56,'Uzbekistan','uzbekistan.gif'),(57,'Switzerland','switzerland.gif'),(58,'Kiribati','kiribati.gif'),(59,'Philippines','philippines.gif'),(60,'Burkina Faso','burkinafaso.gif'),(61,'Nigeria','nigeria.gif'),(62,'Iceland','iceland.gif'),(63,'Nauru','nauru.gif'),(64,'Slovenia','slovenia.gif'),(66,'Turkmenistan','turkmenistan.gif'),(67,'Bosnia Herzegovina','bosniaherzegovina.gif'),(68,'Andorra','andorra.gif'),(69,'Lithuania','lithuania.gif'),(71,'Netherlands Antilles','nethantilles.gif'),(72,'Ukraine','ukraine.gif'),(73,'Venezuela','venezuela.gif'),(74,'Hungary','hungary.gif'),(75,'Romania','romania.gif'),(76,'Vanuatu','vanuatu.gif'),(77,'Vietnam','vietnam.gif'),(78,'Trinidad & Tobago','trinidadandtobago.gif'),(79,'Honduras','honduras.gif'),(80,'Kyrgyzstan','kyrgyzstan.gif'),(81,'Ecuador','ecuador.gif'),(82,'Bahamas','bahamas.gif'),(83,'Peru','peru.gif'),(84,'Cambodia','cambodia.gif'),(85,'Barbados','barbados.gif'),(86,'Bangladesh','bangladesh.gif'),(87,'Laos','laos.gif'),(88,'Uruguay','uruguay.gif'),(89,'Antigua Barbuda','antiguabarbuda.gif'),(90,'Paraguay','paraguay.gif'),(93,'Thailand','thailand.gif'),(92,'Union of Soviet Socialist Republics','ussr.gif'),(94,'Senegal','senegal.gif'),(95,'Togo','togo.gif'),(96,'North Korea','northkorea.gif'),(97,'Croatia','croatia.gif'),(98,'Estonia','estonia.gif'),(99,'Colombia','colombia.gif'),(100,'Lebanon','lebanon.gif'),(101,'Latvia','latvia.gif'),(102,'Costa Rica','costarica.gif'),(103,'Egypt','egypt.gif'),(104,'Bulgaria','bulgaria.gif'),(105,'Isla de Muerte','jollyroger.gif'),(107,'Pirates','jollyroger.gif');
|
|||
|
|
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `downloadspeed`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `downloadspeed`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `downloadspeed` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(50) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `downloadspeed`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `downloadspeed` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `downloadspeed` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `downloadspeed` VALUES (1,'64kbps'),(2,'128kbps'),(3,'256kbps'),(4,'512kbps'),(5,'768kbps'),(6,'1Mbps'),(7,'1.5Mbps'),(8,'2Mbps'),(9,'3Mbps'),(10,'4Mbps'),(11,'5Mbps'),(12,'6Mbps'),(13,'7Mbps'),(14,'8Mbps'),(15,'9Mbps'),(16,'10Mbps'),(17,'48Mbps'),(18,'100Mbit');
|
|||
|
|
/*!40000 ALTER TABLE `downloadspeed` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `faq`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `faq`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `faq` (
|
|||
|
|
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`link_id` smallint(5) unsigned NOT NULL,
|
|||
|
|
`lang_id` smallint(5) unsigned NOT NULL DEFAULT '6',
|
|||
|
|
`type` enum('categ','item') NOT NULL DEFAULT 'item',
|
|||
|
|
`question` text NOT NULL,
|
|||
|
|
`answer` text NOT NULL,
|
|||
|
|
`flag` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
|||
|
|
`categ` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`order` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=476 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `faq`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `faq` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `faq` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `faq` VALUES (1,1,25,'categ','站点信息','',1,0,1),(2,2,25,'categ','用户信息','',1,0,2),(3,3,25,'categ','数据统计','',1,0,3),(4,4,25,'categ','发布','',1,0,4),(5,5,25,'categ','下载','',1,0,5),(6,6,25,'categ','我该怎样提升下载速度?','',1,0,6),(7,7,25,'categ','我的网络提供商(ISP)使用了透明代理。我应该怎么做?','',1,0,7),(8,8,25,'categ','为什么我连不上?难道我被网站屏蔽了?','',1,0,8),(9,9,25,'categ','如果从这里找不到我的问题的解答,我该怎么办?','',1,0,9),(10,10,25,'item','到底什么是BT(Bittorrent)?我要如何才能弄到这类程序?','参看<a class=\"faqlink\" href=\"http://www.btfaq.com/\">Brian的BitTorrent FAQ及指导</a>。',1,1,1),(11,11,25,'item','我们捐出来的钱上哪儿去了?','所有捐助的钱用于维护服务器的费用。',1,1,2),(12,12,25,'item','我从哪里可以搞到源代码的拷贝?','这个Tracker使用的是NexusPHP的代码。代码获取事宜,请看<a class=\"faqlink\" href=\"aboutnexus.php\">这里</a>。<br />\r\nNexusPHP的代码是根据TBSource的源码改写的。TBDev网站,Tracker源代码以及社区论坛都在这里:<a class=\"faqlink\" href=\"http://www.tbdev.net/\">TBDev.net</a>。',1,1,3),(13,13,25,'item','我注册了一个账号但是却没有收到验证邮件!','这很有可能是Tracker所在的服务器网络出现了问题。你可以填写<a href=\"confirm_resend.php\" class=\"faqlink\">这个表格</a>让服务器重发验证邮件。<br />\r\n通常没有得到确认的注册帐户会在24小时后被删除,所以你可以在第二天重试。需要注意的是,如果你第一次没有收到确认信,第二次有很大的可能仍然无法收到确认信,所以换一个E-mail地址是一个不错的主意。',1,2,1),(14,14,25,'item','我忘记了我的用户名/密码了,能帮我找回来么?','请填写<a class=\"faqlink\" href=\"recover.php\">这个表单</a>,我们将把登录详情发还给你。',1,2,2),(15,15,25,'item','我可以给我的账号改个名字么?','我们并不支持给账号改名。',1,2,3),(16,16,25,'item','你可以删除一个(已确认的)账号么?','我们一般不提供该类服务,所以不要请求删除任何一个被你邀请的帐号。',1,2,4),(17,17,25,'item','那么,什么是我的分享率(Ratio)?','就在页面功能分区的下面。<br />\r\n<br />\r\n<img src=\"pic/ratio.png\" alt=\"ratio\" />\r\n<br />\r\n<br />\r\n区分你的整体分享率和独立分享率是很重要的。整体分享率关注的是自从你加入站点以来,账号的整体上传与下载量。而独立分享率则针对每一个你正在下载或做种的文件。\r\n<br />\r\n<br />\r\n你可能看到两种符号来代替数字:\"Inf.\",这个是无限(Infinity)的缩写,意思是你的下载量为0字节,而上传量则是任意一个非零的值(上传量/下载量=无穷大);\"---\",应该被视为“不可用”,这说明了你的下载量和上传量都是0字节。(上传量/下载量=0/0 这是一个不确定的量)。\r\n',1,2,5),(18,18,25,'item','为什么我的IP地址显示在我的个人信息页面上?','只有你自己和网站Moderator及以上的管理员可以看到你的IP地址和Email。普通用户是看不到这些信息的。',1,2,6),(21,21,25,'item','为什么我的“可连接”是“否”?(以及为什么我需要关注这个问题?)','Tracker服务器认为你在防火墙后,或者在NAT桥接后,并且无法接收其他Peer的连接请求。\r\n<br />\r\n<br />\r\n这意味着其它的大批Peer无法连接到你,只能由你连接到他们。更糟糕的情况是,如果两个Peer都处于这样的状态,他们将完全无法连接到对方。这对于整体速度有着非常不利的影响。\r\n<br />\r\n<br />\r\n对于这个问题,有以下解决方式:对于防火墙,打开用于接收连接的端口(即你在BT客户端中定义的端口);对于NAT,你需要配置NAT服务器使用Basic NAT方式
|
|||
|
|
/*!40000 ALTER TABLE `faq` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `files`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `files`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `files` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`torrent` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`filename` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`size` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `torrent` (`torrent`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `files`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `files` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `files` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `files` VALUES (1,1,'.DS_Store',8196),(2,1,'影棚拍摄-364.jpg',927022),(3,1,'影棚拍摄-278.gif',994327),(4,1,'俯拍2.jpg',1016580),(5,1,'影棚拍摄-009.jpg',1021126),(6,1,'影棚拍摄-224.jpg',1054786),(7,1,'影棚拍摄-138.jpg',1076292),(8,1,'影棚拍摄-006.jpg',1077628),(9,1,'俯拍.jpg',1108072),(10,1,'影棚拍摄-269.jpg',1179897),(11,1,'影棚拍摄-264.jpg',1301338),(12,1,'影棚拍摄-087.jpg',1445643),(13,1,'影棚拍摄-085.jpg',1465029),(14,1,'影棚拍摄-249.jpg',1467329),(15,1,'影棚拍摄-242.jpg',1537493),(16,1,'影棚拍摄-299.jpg',1558461),(17,1,'影棚拍摄-234.jpg',1608371),(18,1,'影棚拍摄-079.jpg',1813062),(19,1,'影棚拍摄-055.jpg',1820420),(20,1,'181577155798_.pic_hd2.jpg',1925055),(21,1,'影棚拍摄-313.jpg',2308211),(22,1,'影棚拍摄-040.gif',2391971),(23,1,'影棚拍摄-237.jpg',2503508),(24,1,'玩偶.gif',4583317),(25,2,'breach-trailer-1_h1080p.mov',153574679),(26,3,'breach-trailer-1_h1080p.mov',153574679),(27,4,'the-reckoning-trailer-1_h1080p.mov',130596609);
|
|||
|
|
/*!40000 ALTER TABLE `files` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `forummods`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `forummods`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `forummods` (
|
|||
|
|
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`forumid` smallint(5) unsigned NOT NULL,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `forumid` (`forumid`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `forummods`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `forummods` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `forummods` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `forummods` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `forums`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `forums`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `forums` (
|
|||
|
|
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`sort` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`name` varchar(60) NOT NULL,
|
|||
|
|
`description` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`minclassread` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`minclasswrite` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`postcount` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`topiccount` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`minclasscreate` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`forid` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `forums`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `forums` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `forums` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `forums` VALUES (1,0,'测试版块','',16,16,6,1,16,3);
|
|||
|
|
/*!40000 ALTER TABLE `forums` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `friends`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `friends`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `friends` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL,
|
|||
|
|
`friendid` mediumint(8) unsigned NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `userfriend` (`userid`,`friendid`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `friends`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `friends` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `friends` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `friends` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `fun`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `fun`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `fun` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`body` text,
|
|||
|
|
`title` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`status` enum('normal','dull','notfunny','funny','veryfunny','banned') NOT NULL DEFAULT 'normal',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `fun`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `fun` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `fun` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `fun` VALUES (1,2,'2021-01-14 04:46:23',' [em13] ','好笑吗?来笑一个','normal');
|
|||
|
|
/*!40000 ALTER TABLE `fun` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `funds`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `funds`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `funds` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`usd` decimal(8,2) NOT NULL DEFAULT '0.00',
|
|||
|
|
`cny` decimal(8,2) NOT NULL DEFAULT '0.00',
|
|||
|
|
`user` mediumint(8) unsigned NOT NULL,
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`memo` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `funds`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `funds` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `funds` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `funds` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `funvotes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `funvotes`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `funvotes` (
|
|||
|
|
`funid` mediumint(8) unsigned NOT NULL,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL,
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`vote` enum('fun','dull') NOT NULL DEFAULT 'fun',
|
|||
|
|
PRIMARY KEY (`funid`,`userid`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `funvotes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `funvotes` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `funvotes` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `funvotes` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `i18n`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `i18n`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `i18n` (
|
|||
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
|
`locale` varchar(255) NOT NULL COMMENT '本地化标识',
|
|||
|
|
`name` varchar(255) NOT NULL COMMENT '键名',
|
|||
|
|
`translation` mediumtext COMMENT '翻译',
|
|||
|
|
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
|||
|
|
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `unique_locale_name` (`locale`,`name`) USING BTREE,
|
|||
|
|
KEY `idx_name` (`name`)
|
|||
|
|
) ENGINE=InnoDB AUTO_INCREMENT=12891 DEFAULT CHARSET=utf8mb4 COMMENT='国际化多语言表';
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `i18n`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `i18n` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `i18n` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `i18n` VALUES (23,'en','i18n.internationalization','Internationalization','2021-01-11 10:57:54','2021-01-11 10:57:54'),(24,'chs','i18n.internationalization','国际化','2021-01-11 10:57:54','2021-01-11 10:57:54'),(25,'cht','i18n.internationalization','國際化','2021-01-11 10:57:54','2021-01-11 10:57:54'),(29,'en','i18n.query_internationalization','Query Internationalization','2021-01-11 11:12:37','2021-01-11 11:12:37'),(30,'chs','i18n.query_internationalization','查询国际化翻译','2021-01-11 11:12:37','2021-01-11 11:12:37'),(31,'cht','i18n.query_internationalization','查詢國際化翻譯','2021-01-11 11:12:37','2021-01-11 11:12:37'),(32,'en','i18n.internationalization_form','Internationalization Form','2021-01-11 11:34:09','2021-01-11 11:34:09'),(33,'chs','i18n.internationalization_form','国际化翻译表单','2021-01-11 11:34:09','2021-01-11 11:34:09'),(34,'cht','i18n.internationalization_form','國際化翻譯表單','2021-01-11 11:34:09','2021-01-11 11:34:09'),(35,'en','cleanup.msg_low_ratio_warning_removed','Low Ratio Warning Removed','2021-01-11 12:47:50','2021-01-11 12:47:50'),(36,'en','cleanup.msg_your_ratio_warning_removed','Your warning of low ratio have been removed and auto-promoted to [b]User[/b]. We highly recommend you to keep a your ratio up to not be warned again.\n','2021-01-11 12:47:50','2021-01-11 12:47:50'),(37,'en','cleanup.msg_promoted_to','Promoted to ','2021-01-11 12:47:50','2021-01-11 12:47:50'),(38,'en','cleanup.msg_now_you_are','Congratulations, you have been auto-promoted to [b]','2021-01-11 12:47:50','2021-01-11 12:47:50'),(39,'en','cleanup.msg_see_faq','[/b]. :)\nPlease see the [b][url=faq.php#id22]FAQ[/url][/b] for what you can do now.\n','2021-01-11 12:47:50','2021-01-11 12:47:50'),(40,'en','cleanup.msg_demoted_to','Demoted to ','2021-01-11 12:47:50','2021-01-11 12:47:50'),(41,'en','cleanup.msg_demoted_from','You have been auto-demoted from [b]','2021-01-11 12:47:50','2021-01-11 12:47:50'),(42,'en','cleanup.msg_to','[/b] to [b]','2021-01-11 12:47:50','2021-01-11 12:47:50'),(43,'en','cleanup.msg_because_ratio_drop_below','[/b] because your share ratio has dropped below ','2021-01-11 12:47:50','2021-01-11 12:47:50'),(44,'en','cleanup.msg_must_fix_ratio_within','You have been warned and auto-demoted from [b]User[/b] to [b]Peasant[/b] because of having low ratio. You need to fix it within ','2021-01-11 12:47:50','2021-01-11 12:47:50'),(45,'en','cleanup.msg_days_or_get_banned',' days or your account will be banned. If you have no idea of what is ratio or how it affects you, we suggest you read the [url=faq.php#idid17][b]FAQ[/b][/url].','2021-01-11 12:47:50','2021-01-11 12:47:50'),(46,'en','cleanup.msg_vip_status_removed','VIP status removed by system.','2021-01-11 12:47:50','2021-01-11 12:47:50'),(47,'en','cleanup.msg_vip_status_removed_body','Your VIP status has timed out and has been auto-removed by the system. Become a VIP again by exchanging some Karma Bonus Points. Cheers!','2021-01-11 12:47:50','2021-01-11 12:47:50'),(48,'en','cleanup.msg_warning_removed','Warning removed by System','2021-01-11 12:47:50','2021-01-11 12:47:50'),(49,'en','cleanup.msg_your_warning_removed','Your warning is removed by System. We hope you would behave from now on.','2021-01-11 12:47:50','2021-01-11 12:47:50'),(50,'en','cleanup.msg_your_torrent_deleted','Your torrent was deleted','2021-01-11 12:47:50','2021-01-11 12:47:50'),(51,'en','cleanup.msg_your_torrent','Your torrent ','2021-01-11 12:47:50','2021-01-11 12:47:50'),(52,'en','cleanup.msg_was_deleted_because_dead',' was deleted by system because it\'s been dead for a long time. However, you keep the karma bonus for uploading the torrent.','2021-01-11 12:47:50','2021-01-11 12:47:50'),(53,'chs','cleanup.msg_low_ratio_warning_removed','低分享率警告取消','2021-01-11 12:47:50','2021-01-11 12:47:50'),(54,'chs','cleanup.msg_your_ratio_warning_removed','你因分享率过低而获得的警告被取消。你的等级已恢复为[b]User[/b]。请注意提高分享率,避免再次被警告。\n','2021-01-11 12:47:50','2021-01-11 12:4
|
|||
|
|
INSERT INTO `i18n` VALUES (8896,'en','checkuser.submit_confirm_this_user','Confirm this user','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8897,'en','comment.std_error','Error','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8898,'en','comment.std_comment_flooding_denied','Comment Flooding Not Allowed. Please wait ','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8899,'en','comment.std_before_posting_another',' second(s) before posting another comment.','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8900,'en','comment.std_no_torrent_id','No torrent with this ID.','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8901,'en','comment.std_no_comment_id','No comment with this ID','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8902,'en','comment.std_comment_body_empty','Comment body cannot be empty!','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8903,'en','comment.head_add_comment_to','Add a comment to ','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8904,'en','comment.text_add_comment_to','Add a comment to ','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8905,'en','comment.submit_okay','Okay','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8906,'en','comment.text_comments_in_reverse_order','Most recent comments, in reverse order\n','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8907,'en','comment.std_invalid_id','Invalid ID.','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8908,'en','comment.std_permission_denied','Permission denied.','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8909,'en','comment.head_edit_comment_to','Edit comment to ','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8910,'en','comment.text_edit_comment_to','Edit comment to ','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8911,'en','comment.std_delete_comment','Delete comment','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8912,'en','comment.std_delete_comment_note','You are about to delete a comment. Click\n','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8913,'en','comment.std_here_if_sure','><b>here</b></a> if you are sure.','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8914,'en','comment.head_original_comment','Original comment','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8915,'en','comment.text_original_content_of_comment','Original contents of comment ','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8916,'en','comment.std_unknown_action','Unknown action.','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8917,'en','comment.std_no_review_id','No review with this ID','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8918,'en','comment.std_review_body_empty','Review body cannot be empty!','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8919,'en','comment.text_reviews_in_reverse_order','<h2>Most recent reviews, in reverse order</h2>\n','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8920,'en','comment.head_edit_review_to','Edit review to ','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8921,'en','comment.text_edit_review_to','Edit review to ','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8922,'en','comment.std_delete_review','Delete review','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8923,'en','comment.std_delete_review_note','You are about to delete a review. Click\n','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8924,'en','comment.head_original_review','Original review','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8925,'en','comment.text_original_content_of_review','Original contents of review ','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8926,'en','comment.row_user_comment','User Comment','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8927,'en','comment.row_editor_notes','Editor\'s Notes','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8928,'en','comment.row_bouns_change','Bonus Change','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8929,'en','comment.text_bouns_change_notes',' 0 to 1000, based on the quality of review(over 1000 will be treated as 1000 and others not in the range will be treated as 0)','2021-01-11 12:48:11','2021-01-11 12:48:11'),(8930,'en','comment.std_review_no_external_info','Could not mark comments with no external info!','2021-01-11 12:48:11','2
|
|||
|
|
/*!40000 ALTER TABLE `i18n` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `invites`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `invites`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `invites` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`inviter` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`invitee` varchar(80) NOT NULL DEFAULT '',
|
|||
|
|
`hash` char(32) NOT NULL,
|
|||
|
|
`time_invited` datetime DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `hash` (`hash`(3))
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `invites`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `invites` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `invites` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `invites` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `iplog`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `iplog`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `iplog` (
|
|||
|
|
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`ip` varchar(64) NOT NULL,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL,
|
|||
|
|
`access` datetime DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `userid` (`userid`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=65 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `iplog`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `iplog` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `iplog` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `iplog` VALUES (1,'103.40.249.178',2,'2020-12-28 02:27:01'),(2,'103.40.249.178',2,'2020-12-28 02:27:01'),(3,'120.229.99.56',2,'2020-12-28 12:51:18'),(4,'223.74.101.40',2,'2020-12-28 14:29:35'),(5,'120.229.99.56',2,'2020-12-28 14:30:47'),(6,'120.229.99.56',2,'2020-12-28 14:30:47'),(7,'120.229.33.157',2,'2020-12-28 14:38:59'),(8,'120.229.99.56',2,'2020-12-28 15:00:41'),(9,'120.229.33.126',2,'2020-12-28 18:19:23'),(10,'120.229.99.56',2,'2020-12-28 18:21:58'),(11,'103.40.249.178',2,'2020-12-28 19:46:59'),(12,'120.229.33.89',2,'2020-12-29 06:45:00'),(13,'103.40.249.178',2,'2020-12-29 18:37:26'),(14,'120.229.33.89',2,'2020-12-30 05:06:42'),(15,'120.229.99.193',2,'2020-12-30 15:45:04'),(16,'103.40.249.178',2,'2021-01-01 07:07:20'),(17,'120.229.99.227',2,'2021-01-04 13:11:35'),(18,'103.40.249.178',2,'2021-01-04 18:00:12'),(19,'120.229.99.227',2,'2021-01-05 11:44:51'),(20,'120.229.99.227',3,'2021-01-05 16:20:36'),(21,'120.229.33.96',3,'2021-01-05 16:21:22'),(22,'120.229.99.227',3,'2021-01-05 16:28:16'),(23,'103.40.249.178',3,'2021-01-05 17:10:38'),(24,'103.40.249.178',2,'2021-01-05 17:28:15'),(25,'120.229.33.91',2,'2021-01-07 13:13:16'),(26,'103.40.249.178',2,'2021-01-07 18:22:10'),(27,'120.229.33.91',2,'2021-01-08 12:33:49'),(28,'103.40.249.178',2,'2021-01-08 18:20:26'),(29,'120.229.99.184',2,'2021-01-09 11:38:18'),(30,'223.74.101.7',2,'2021-01-09 15:13:48'),(31,'103.40.249.178',2,'2021-01-10 18:22:42'),(32,'223.74.101.7',2,'2021-01-11 14:00:06'),(33,'103.40.249.178',2,'2021-01-11 16:54:54'),(34,'103.40.249.178',2,'2021-01-11 16:54:54'),(35,'103.40.249.178',2,'2021-01-11 16:54:54'),(36,'103.40.249.178',2,'2021-01-11 16:54:54'),(37,'103.40.249.178',2,'2021-01-11 16:54:54'),(38,'103.40.249.178',2,'2021-01-11 16:54:54'),(39,'103.40.249.178',2,'2021-01-11 16:54:54'),(40,'103.40.249.178',2,'2021-01-11 16:54:54'),(41,'103.40.249.178',2,'2021-01-11 16:54:54'),(42,'103.40.249.178',2,'2021-01-11 16:54:54'),(43,'223.73.210.185',2,'2021-01-12 13:49:25'),(44,'103.40.249.178',2,'2021-01-12 17:53:52'),(45,'120.229.99.248',2,'2021-01-13 05:02:43'),(46,'120.229.99.248',2,'2021-01-14 12:23:18'),(47,'103.40.249.178',2,'2021-01-14 14:10:42'),(48,'120.229.33.100',2,'2021-01-15 14:11:32'),(49,'103.40.249.178',2,'2021-01-17 17:40:36'),(50,'120.229.33.248',2,'2021-01-18 11:42:09'),(51,'103.40.249.178',2,'2021-01-18 16:53:07'),(52,'120.229.33.248',2,'2021-01-19 11:44:03'),(53,'103.40.249.178',2,'2021-01-19 15:37:52'),(54,'45.79.106.194',2,'2021-01-20 09:40:19'),(55,'120.229.33.248',2,'2021-01-20 16:03:52'),(56,'45.79.106.194',2,'2021-01-20 16:06:35'),(57,'223.74.101.56',2,'2021-01-20 16:40:07'),(58,'45.79.106.194',2,'2021-01-20 16:47:31'),(59,'101.37.90.118',2,'2021-01-20 17:11:51'),(60,'120.229.33.248',2,'2021-01-20 17:13:30'),(61,'120.229.33.236',2,'2021-01-20 18:04:35'),(62,'45.79.106.194',2,'2021-01-20 18:11:18'),(63,'103.40.249.178',2,'2021-01-20 18:13:07'),(64,'116.62.176.31',2,'2021-01-21 02:43:13');
|
|||
|
|
/*!40000 ALTER TABLE `iplog` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `isp`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `isp`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `isp` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(50) DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `isp`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `isp` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `isp` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `isp` VALUES (1,'中国电信'),(2,'中国网通'),(3,'中国铁通'),(4,'中国移动'),(5,'中国联通'),(6,'中国教育网'),(20,'Other');
|
|||
|
|
/*!40000 ALTER TABLE `isp` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `language`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `language`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `language` (
|
|||
|
|
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`lang_name` varchar(50) NOT NULL,
|
|||
|
|
`flagpic` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`sub_lang` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
|||
|
|
`rule_lang` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`site_lang` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`site_lang_folder` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`trans_state` enum('up-to-date','outdate','incomplete','need-new','unavailable') NOT NULL DEFAULT 'unavailable',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=32 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `language`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `language` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `language` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `language` VALUES (1,'Bulgarian','bulgaria.gif',1,0,0,'','unavailable'),(2,'Croatian','croatia.gif',1,0,0,'','unavailable'),(3,'Czech','czechrep.gif',1,0,0,'','unavailable'),(4,'Danish','denmark.gif',1,0,0,'','unavailable'),(5,'Dutch','netherlands.gif',1,0,0,'','unavailable'),(6,'English','uk.gif',1,1,1,'en','up-to-date'),(7,'Estonian','estonia.gif',1,0,0,'','unavailable'),(8,'Finnish','finland.gif',1,0,0,'','unavailable'),(9,'French','france.gif',1,0,0,'','unavailable'),(10,'German','germany.gif',1,0,0,'','unavailable'),(11,'Greek','greece.gif',1,0,0,'','unavailable'),(12,'Hebrew','israel.gif',1,0,0,'','unavailable'),(13,'Hungarian','hungary.gif',1,0,0,'','unavailable'),(14,'Italian','italy.gif',1,0,0,'','unavailable'),(15,'日本語','japan.gif',1,0,0,'','unavailable'),(16,'한국어','southkorea.gif',1,0,0,'ko','unavailable'),(17,'Norwegian','norway.gif',1,0,0,'','unavailable'),(18,'Other','jollyroger.gif',1,0,0,'','unavailable'),(19,'Polish','poland.gif',1,0,0,'','unavailable'),(20,'Portuguese','portugal.gif',1,0,0,'','unavailable'),(21,'Romanian','romania.gif',1,0,0,'','unavailable'),(22,'Russian','russia.gif',1,0,0,'','unavailable'),(23,'Serbian','serbia.gif',1,0,0,'','unavailable'),(24,'Slovak','slovakia.gif',1,0,0,'','unavailable'),(25,'简体中文','china.gif',1,1,1,'chs','up-to-date'),(26,'Spanish','spain.gif',1,0,0,'','unavailable'),(27,'Swedish','sweden.gif',1,0,0,'','unavailable'),(28,'繁體中文','hongkong.gif',1,1,1,'cht','up-to-date'),(29,'Turkish','turkey.gif',1,0,0,'','unavailable'),(30,'Slovenian','slovenia.gif',1,0,0,'','unavailable'),(31,'Thai','thailand.gif',1,0,0,'th','unavailable');
|
|||
|
|
/*!40000 ALTER TABLE `language` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `links`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `links`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `links` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(30) NOT NULL,
|
|||
|
|
`url` varchar(255) NOT NULL,
|
|||
|
|
`title` varchar(50) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `links`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `links` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `links` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `links` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `locations`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `locations`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `locations` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(50) DEFAULT NULL,
|
|||
|
|
`location_main` varchar(200) NOT NULL,
|
|||
|
|
`location_sub` varchar(200) NOT NULL,
|
|||
|
|
`flagpic` varchar(50) DEFAULT NULL,
|
|||
|
|
`start_ip` varchar(20) NOT NULL,
|
|||
|
|
`end_ip` varchar(20) NOT NULL,
|
|||
|
|
`theory_upspeed` int(10) unsigned NOT NULL DEFAULT '10',
|
|||
|
|
`practical_upspeed` int(10) unsigned NOT NULL DEFAULT '10',
|
|||
|
|
`theory_downspeed` int(10) unsigned NOT NULL DEFAULT '10',
|
|||
|
|
`practical_downspeed` int(10) unsigned NOT NULL DEFAULT '10',
|
|||
|
|
`hit` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `locations`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `locations` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `locations` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `locations` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `loginattempts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `loginattempts`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `loginattempts` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`ip` varchar(64) NOT NULL DEFAULT '',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`banned` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`attempts` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`type` enum('login','recover') NOT NULL DEFAULT 'login',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `loginattempts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `loginattempts` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `loginattempts` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `loginattempts` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `media`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `media`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `media` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(30) NOT NULL,
|
|||
|
|
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `media`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `media` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `media` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `media` VALUES (1,'Blu-ray',0),(2,'HD DVD',1),(4,'MiniBD',4),(5,'HDTV',5),(6,'DVDR',6),(7,'Encode',3),(3,'Remux',2),(8,'CD',7),(9,'Track',9);
|
|||
|
|
/*!40000 ALTER TABLE `media` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `messages`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `messages`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `messages` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`sender` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`receiver` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`subject` varchar(128) NOT NULL DEFAULT '',
|
|||
|
|
`msg` text,
|
|||
|
|
`unread` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`location` smallint(6) NOT NULL DEFAULT '1',
|
|||
|
|
`saved` enum('no','yes') NOT NULL DEFAULT 'no',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `receiver` (`receiver`),
|
|||
|
|
KEY `sender` (`sender`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `messages`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `messages` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `messages` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `messages` VALUES (1,0,2,'2020-12-28 02:27:01','欢迎来到NexusPHP!','祝贺你,\'xioamlove\',\n\n你已成为NexusPHP的一员,\n我们真诚地欢迎你的加入!\n\n请务必先阅读[url=rules.php][b]规则[/b][/url],提问前请自行参考[url=faq.php][b]常见问题[/b][/url],有空也请到[url=forums.php][b]论坛[/b][/url]看看。 \n\n祝你愉快。\nNexusPHP管理组','no',1,'no'),(2,0,3,'2021-01-05 16:20:36','欢迎来到NexusPHP!','祝贺你,\'tt\',\n\n你已成为NexusPHP的一员,\n我们真诚地欢迎你的加入!\n\n请务必先阅读[url=rules.php][b]规则[/b][/url],提问前请自行参考[url=faq.php][b]常见问题[/b][/url],有空也请到[url=forums.php][b]论坛[/b][/url]看看。 \n\n祝你愉快。\nNexusPHP管理组','no',1,'no');
|
|||
|
|
/*!40000 ALTER TABLE `messages` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `modpanel`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `modpanel`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `modpanel` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(128) NOT NULL DEFAULT '',
|
|||
|
|
`url` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`info` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=1020 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `modpanel`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `modpanel` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `modpanel` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `modpanel` VALUES (1,'Abnormal Upload Speed Detector','cheaters.php','See cheaters'),(2,'Duplicate IP Check','ipcheck.php','Check for Duplicate IP Users'),(3,'All Clients (currently)','allagents.php','Show All Clients (currently downloading/uploading/seeding)'),(4,'Ad management','admanage.php','Manage ads at your site'),(5,'Uploaders','uploaders.php','See uploaders stats'),(6,'Stats','stats.php','Tracker Stats'),(7,'IP Test','testip.php','Test if IP is banned'),(8,'Add Bonus Points','amountbonus.php','Add Bonus Points to one or All Users.'),(9,'Clear cache','clearcache.php','Clear cache of memcached');
|
|||
|
|
/*!40000 ALTER TABLE `modpanel` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `news`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `news`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `news` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`body` text,
|
|||
|
|
`title` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`notify` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `added` (`added`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `news`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `news` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `news` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `news` VALUES (3,2,'2020-12-29 17:46:32','[attach]a1d98328417f4bb9580bfe9d069b9fa7[/attach] [em17] ','咋回事,首页看不到?','no'),(2,2,'2020-12-29 17:37:24','测试新闻 [em2] \r\n0006666','来了,这是新闻','no');
|
|||
|
|
/*!40000 ALTER TABLE `news` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `offers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `offers`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `offers` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`name` varchar(225) NOT NULL,
|
|||
|
|
`descr` text,
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`allowedtime` datetime DEFAULT NULL,
|
|||
|
|
`yeah` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`against` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`category` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`comments` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`allowed` enum('allowed','pending','denied') NOT NULL DEFAULT 'pending',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `userid` (`userid`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `offers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `offers` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `offers` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `offers` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `offervotes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `offervotes`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `offervotes` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`offerid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`vote` enum('yeah','against') NOT NULL DEFAULT 'yeah',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `userid` (`userid`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `offervotes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `offervotes` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `offervotes` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `offervotes` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `overforums`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `overforums`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `overforums` (
|
|||
|
|
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(60) NOT NULL,
|
|||
|
|
`description` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`minclassview` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`sort` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `overforums`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `overforums` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `overforums` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `overforums` VALUES (4,'深圳','',16,0),(3,'程序更新','',16,0);
|
|||
|
|
/*!40000 ALTER TABLE `overforums` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `peers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `peers`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `peers` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`torrent` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`peer_id` binary(20) NOT NULL,
|
|||
|
|
`ip` varchar(64) NOT NULL DEFAULT '',
|
|||
|
|
`port` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`uploaded` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`downloaded` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`to_go` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`seeder` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`started` datetime DEFAULT NULL,
|
|||
|
|
`last_action` datetime DEFAULT NULL,
|
|||
|
|
`prev_action` datetime DEFAULT NULL,
|
|||
|
|
`connectable` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`agent` varchar(60) NOT NULL DEFAULT '',
|
|||
|
|
`finishedat` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`downloadoffset` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`uploadoffset` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`passkey` char(32) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `userid` (`userid`),
|
|||
|
|
KEY `torrent` (`torrent`)
|
|||
|
|
) ENGINE=MEMORY AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `peers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `peers` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `peers` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `peers` VALUES (6,4,'-UT355W-<1C>!<21>/<2F><><EFBFBD>\<5C>l(','103.40.249.178',44617,0,0,0,'yes','2021-01-20 02:10:23','2021-01-20 17:59:49','2021-01-20 17:29:49','no',3,'uTorrent/355(111915804)(45852)',0,0,0,'4071d164e38408cde796ce1b0e4a42e2'),(7,4,'-UT355W-<2D><>U:P<>\<5C>4^x+<2B>','120.229.33.248',33376,0,0,130596609,'no','2021-01-20 15:52:00','2021-01-20 17:55:25','2021-01-20 17:44:46','no',2,'uTorrent/355(111915183)(45231)',0,0,0,'102875e936dbd8ec3f1a7569b3096ee4');
|
|||
|
|
/*!40000 ALTER TABLE `peers` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `pmboxes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `pmboxes`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `pmboxes` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL,
|
|||
|
|
`boxnumber` tinyint(3) unsigned NOT NULL DEFAULT '2',
|
|||
|
|
`name` varchar(15) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `pmboxes`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `pmboxes` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `pmboxes` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `pmboxes` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `pollanswers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `pollanswers`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `pollanswers` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`pollid` mediumint(8) unsigned NOT NULL,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL,
|
|||
|
|
`selection` tinyint(3) unsigned NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `pollid` (`pollid`),
|
|||
|
|
KEY `selection` (`selection`),
|
|||
|
|
KEY `userid` (`userid`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `pollanswers`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `pollanswers` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `pollanswers` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `pollanswers` VALUES (3,4,2,255),(4,5,2,1),(5,6,2,1),(6,6,3,1);
|
|||
|
|
/*!40000 ALTER TABLE `pollanswers` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `polls`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `polls`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `polls` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`question` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`option0` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option1` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option2` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option3` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option4` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option5` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option6` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option7` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option8` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option9` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option10` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option11` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option12` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option13` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option14` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option15` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option16` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option17` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option18` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`option19` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `polls`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `polls` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `polls` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `polls` VALUES (4,'2021-01-14 06:13:13','来吧,展示','111','222','','','','','','','','','','','','','','','','','',''),(5,'2021-01-14 06:14:20','来吧,展示3','3333','4444','','','','','','','','','','','','','','','','','',''),(6,'2021-01-14 06:24:19','来吧,展示4','666','7777','','','','','','','','','','','','','','','','','','');
|
|||
|
|
/*!40000 ALTER TABLE `polls` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `posts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `posts`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `posts` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`topicid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`body` text,
|
|||
|
|
`ori_body` text,
|
|||
|
|
`editedby` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`editdate` datetime DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `userid` (`userid`),
|
|||
|
|
KEY `topicid_id` (`topicid`,`id`),
|
|||
|
|
KEY `added` (`added`),
|
|||
|
|
FULLTEXT KEY `body` (`body`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `posts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `posts` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `posts` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `posts` VALUES (1,1,2,'2020-12-28 18:24:59','9999\r\n [em17]','[em17]',2,'2020-12-28 18:28:57'),(2,1,2,'2020-12-28 18:31:57','共他,范特西萨克森','共他,范特西萨克森',0,'0000-00-00 00:00:00'),(3,1,2,'2020-12-28 18:32:45','共他,范特西萨克森','共他,范特西萨克森',0,'0000-00-00 00:00:00'),(4,1,2,'2020-12-29 02:27:35','来了老夔','来了老夔',0,'0000-00-00 00:00:00'),(5,1,2,'2020-12-29 02:27:49','[quote=xioamlove]来了老夔[/quote]\r\n你说你最爱梅香','[quote=xioamlove]来了老夔[/quote]\r\n你说你最爱梅香',2,'2021-01-04 12:43:42'),(6,1,2,'2021-01-04 12:13:03','好,威武','好,威武',0,'0000-00-00 00:00:00');
|
|||
|
|
/*!40000 ALTER TABLE `posts` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `processings`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `processings`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `processings` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(30) NOT NULL,
|
|||
|
|
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `processings`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `processings` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `processings` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `processings` VALUES (1,'Raw',0),(2,'Encode',0);
|
|||
|
|
/*!40000 ALTER TABLE `processings` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `prolinkclicks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `prolinkclicks`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `prolinkclicks` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`ip` varchar(64) NOT NULL DEFAULT '',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `prolinkclicks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `prolinkclicks` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `prolinkclicks` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `prolinkclicks` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `readposts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `readposts`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `readposts` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`topicid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`lastpostread` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `topicid` (`topicid`),
|
|||
|
|
KEY `userid` (`userid`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `readposts`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `readposts` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `readposts` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `readposts` VALUES (2,2,1,6);
|
|||
|
|
/*!40000 ALTER TABLE `readposts` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `regimages`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `regimages`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `regimages` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`imagehash` varchar(32) NOT NULL DEFAULT '',
|
|||
|
|
`imagestring` varchar(8) NOT NULL DEFAULT '',
|
|||
|
|
`dateline` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `regimages`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `regimages` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `regimages` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `regimages` VALUES (1,'268a514faade39182a305d5fc3315ba0','AC4FCF',1610279077),(2,'b81730e02c7375b6526a2f5b16a6009f','RR1DE1',1610452389),(7,'90c4fccb32a808158cc94dfdee08e7c3','BF1EBP',1611050249),(8,'c0a98955b8bf79998afb5e6c51bb5d41','D43CR7',1611050255),(9,'2a65de38ac9624574eceb985d7707489','3F5C2F',1611050345),(20,'ba0545b13acba58e2485f450be8af940','4M3DE7',1611089178),(12,'86fe8f04f17dee1edc8ca48a696d386e','F3CF8G',1611050976),(21,'0582812100b2bc13138d29d7e34379fc','C5PRFE',1611116621),(22,'39951acd97a3cad2901ea89a19acd81a','N679FN',1611116629),(23,'e55b3f2e3221d65767ffa22aa72cf011','9A6FG8',1611172906),(24,'b2a9eb51000afc5b44794f3d829f3a28','48392F',1611173567),(25,'796b2356b113469078e3f8f6f9eb397e','H3BMG7',1611173801),(26,'e9e61e303cdb37d1b8d47cf16e839aa0','7N4BMH',1611173861),(27,'7b9cf2ac0ea57f5b1c33e04de29335cb','29MMBB',1611173874),(28,'a3ec3375ee1e99b7a8881f00db9c43f8','MFN9AC',1611174067),(29,'8a42bd84c7d04f7dbbb5e8f84a70fd15','M5EEG7',1611174073),(30,'8efcd0a52515ebd0e36415c03dca5ce6','63C88M',1611174120),(31,'dfbd707bb999eb8b4bd782d37fed7972','M76HHG',1611175956),(32,'b325264256886d5ec7066d65c0b51444','2DD1BR',1611176178),(33,'7faa62d904c823f8d30ab9d7071eccce','E26DGR',1611179251),(34,'f76fa269b5aa9abf6c873237bfa9fe44','GGG57A',1611179378),(35,'b3a94474d75138d8fff9f1115e7656de','17PP9F',1611179382),(36,'d98d7493ddc0df33bc79eff7709ad1fc','CBCHB3',1611179446),(37,'c43e4b88cb5504d5e96cdf6e05bbbc72','645HGM',1611179448),(38,'c2842883401378365ef051b12c3de277','78D78P',1611179450),(39,'d219a882cbdff407ec90cad5c90fb2d5','PEEG99',1611179452),(40,'f35a5e14c57299b3743104cbe02b23ff','M6DPNP',1611179652),(41,'2a8457bd53787b93797f66dc897fe965','D2RD29',1611179658),(42,'90d48d0c886a20980a4b6702a28fc4a7','1GNN55',1611179669),(43,'d47c828f135302c14ee2329cf7225085','HP8B85',1611179678),(44,'01f2c4a8dfcd6d536647959abbcaffa2','HNPNFB',1611179715),(45,'976bee3cc0422ad81914d0650c2e11d8','A87PN3',1611180406),(46,'14cff40d06ae73f868b5db831c34b22e','G789G8',1611180665),(47,'debf3e58d46ec59ae07926f6278c3939','HF38HH',1611180672),(49,'c32aa94a94d4e87ad5c22f1dc03e96c9','BC2RPF',1611198305),(50,'a0e6aef5ce6d5cd612ac0b903fb8887a','M49DF8',1611198317),(51,'92dfa666831d979156f485eb33c958cf','6NAR35',1611198323),(52,'8676fbad43c9e9140d5655ede6dae7ef','PAABRB',1611198348),(53,'cff43fccc0ac44b45fd78ea7bef07256','585CBH',1611198349),(54,'920a88841b680e714e05aac8853ad914','73EABF',1611198385),(55,'7bcb85e93f3ab45090454700b410135f','D2159D',1611198440),(56,'015d05b0ea53793ffd0d7e2c1e034e77','F6AGG3',1611198446),(57,'c1350250bee73013e0520d7e9ab6bc2f','F9P293',1611198447),(58,'289b67c2df409f64a9ab9ebe2d57c8e6','B9DR97',1611198456),(59,'932e55453a6aeb56d5fa557c58609fe7','RPFNAB',1611198635),(60,'c944e238754fd7b2da8239e663fe4eb0','M9C679',1611198642),(61,'4cf34922529fb04d95fc534fb053591a','G33C3P',1611199997),(62,'7f2f2963f4dec0cc2b18883e328a29a2','44R4B3',1611200174),(63,'2f485dd1c16de5274d1ee0591e6de38d','152DA6',1611200181);
|
|||
|
|
/*!40000 ALTER TABLE `regimages` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `reports`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `reports`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `reports` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`addedby` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`reportid` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`type` enum('torrent','user','offer','request','post','comment','subtitle') NOT NULL DEFAULT 'torrent',
|
|||
|
|
`reason` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`dealtby` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`dealtwith` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `reports`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `reports` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `reports` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `reports` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `rules`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `rules`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `rules` (
|
|||
|
|
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`lang_id` smallint(5) unsigned NOT NULL DEFAULT '6',
|
|||
|
|
`title` varchar(255) NOT NULL,
|
|||
|
|
`text` text,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=56 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `rules`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `rules` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `rules` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `rules` VALUES (1,25,'总则 - <font class=striking>不遵守这些将导致帐号被封!</font>','[*]请不要做管理员明文禁止的事情。\r\n[*]不允许发送垃圾信息。\r\n[*]账号保留规则:\r\n 1.[b]Veteran User[/b]及以上等级用户会永远保留;\r\n 2.[b]Elite User[/b]及以上等级用户封存账号(在[url=usercp.php?action=personal]控制面板[/url])后不会被删除帐号;\r\n 3.封存账号的用户连续400天不登录将被删除帐号;\r\n 4.未封存账号的用户连续150天不登录将被删除帐号;\r\n 5.没有流量的用户(即上传/下载数据都为0)连续100天不登录将被删除帐号。\r\n[*]一切作弊的帐号会被封,请勿心存侥幸。\r\n[*]注册多个[site]账号的用户将被禁止。\r\n[*]不要把本站的种子文件上传到其他Tracker!(具体请看[url=faq.php#38][b]常见问题[/b][/url])\r\n[*]第一次在论坛或服务器中的捣乱行为会受到警告,第二次您将永远无缘[site] 。'),(2,25,'下载规则 - <font class=striking>违规将会失去下载权限!</font>','[*]过低的分享率会导致严重的后果,包括禁止帐号。详见[url=faq.php#22]常见问题[/url]。\r\n[*]种子促销规则:\r\n [*]随机促销(种子上传后系统自动随机设为促销):\r\n [*]10%的概率成为“[color=#7c7ff6][b]50%下载[/b][/color]”;\r\n [*]5%的概率成为“[color=#f0cc00][b]免费[/b][/color]”;\r\n [*]5%的概率成为“[color=#aaaaaa][b]2x上传[/b][/color]”;\r\n [*]3%的概率成为“[color=#7ad6ea][b]50%下载&2x上传[/b][/color]”;\r\n [*]1%的概率成为“[color=#99cc66][b]免费&2x上传[/b][/color]”。\r\n [*]文件总体积大于20GB的种子将自动成为“[color=#f0cc00][b]免费[/b][/color]”。\r\n [*]Blu-ray Disk, HD DVD原盘将成为“[color=#f0cc00][b]免费[/b][/color]”。\r\n [*]电视剧等每季的第一集将成为“[color=#f0cc00][b]免费[/b][/color]”。\r\n [*]关注度高的种子将被设置为促销(由管理员定夺)。\r\n [*]促销时限:\r\n [*]除了“[color=#aaaaaa][b]2x上传[/b][/color]”以外,其余类型的促销限时7天(自种子发布时起);\r\n [*]“[color=#aaaaaa][b]2x上传[/b][/color]”无时限。\r\n [*]所有种子在发布1个月后将自动永久成为“[color=#aaaaaa][b]2x上传[/b][/color]”。 \r\n [*]我们也将不定期开启全站[color=#f0cc00][b]免费[/b][/color],届时尽情狂欢吧~:mml: :mml: :mml:\r\n[*]你只能使用允许的BT客户端下载本站资源。详见[url=faq.php#29]常见问题[/url]。'),(4,25,'论坛总则 - <font class=striking>请遵循以下的守则,违规会受到警告!</font>','[*]禁止攻击、挑动他人的言辞。\r\n[*]禁止恶意灌水或发布垃圾信息。请勿在论坛非Water Jar版块发布无意义主题或回复(如纯表情)等。\r\n[*]不要为了获取魔力值而大肆灌水。\r\n[*]禁止在标题或正文使用脏话。\r\n[*]不要讨论禁忌、政治敏感或当地法律禁止的话题。\r\n[*]禁止任何基于种族、国家、民族、肤色、宗教、性别、年龄、性取向、身体或精神障碍的歧视性言辞。违规将导致账号永久性禁用。\r\n[*]禁止挖坟(所有挖坟帖都要被删掉)。\r\n[*]禁止重复发帖。\r\n[*]请确保问题发布在相对应的板块。\r\n[*]365天无新回复的主题将被系统自动锁定.\r\n'),(6,25,'头像使用规定 - <font class=striking>请尽量遵守以下规则</font>','[*]允许的格式为.gif, .jpg, 和.png。\r\n[*]图片大小不能超过150KB,为了统一,系统会调整头像宽度到150像素大小(浏览器会把图片调整成合适的大小,小图片将被拉伸,而过大的图片只会浪费带宽和CPU) 。\r\n[*]请不要使用可能引起别人反感的
|
|||
|
|
/*!40000 ALTER TABLE `rules` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `schools`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `schools`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `schools` (
|
|||
|
|
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(50) DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=101 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `schools`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `schools` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `schools` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `schools` VALUES (1,'南京农业大学'),(2,'中山大学'),(3,'中国石油大学'),(4,'云南大学'),(5,'河海大学'),(6,'南开大学'),(7,'兰州大学'),(8,'合肥工业大学'),(9,'上海大学'),(10,'安徽大学'),(11,'中国海洋大学'),(12,'复旦大学'),(13,'西北大学'),(14,'郑州大学'),(15,'四川大学'),(16,'华中科技大学'),(17,'天津大学'),(18,'山东大学'),(19,'中央民族大学'),(20,'苏州大学'),(21,'重庆大学'),(22,'东北农业大学'),(23,'北京工业大学'),(24,'湖南师范大学'),(25,'东北大学'),(26,'电子科技大学'),(27,'西安电子科技大学'),(28,'北京化工大学'),(29,'南京航空航天大学'),(30,'南京理工大学'),(31,'西北工业大学'),(32,'天津医科大学'),(33,'北京林业大学'),(34,'华南师范大学'),(35,'浙江大学'),(36,'长安大学'),(37,'武汉理工大学'),(38,'河北工业大学'),(39,'南京师范大学'),(40,'中国农业大学'),(41,'厦门大学'),(42,'第二军医大学'),(43,'北京理工大学'),(44,'北京大学'),(45,'上海外国语大学'),(46,'北京科技大学'),(47,'西北农林科技大学'),(48,'中南大学'),(49,'华南理工大学'),(50,'武汉大学'),(51,'福州大学'),(52,'同济大学'),(53,'中国传媒大学'),(54,'湖南大学'),(55,'上海财经大学'),(56,'国防科学技术大学'),(57,'吉林大学'),(58,'大连理工大学'),(59,'中国人民大学'),(60,'上海交通大学'),(61,'西安交通大学'),(62,'江南大学'),(63,'南京大学'),(64,'南昌大学'),(65,'太原理工大学'),(66,'中国地质大学'),(67,'清华大学'),(68,'广西大学'),(69,'中国矿业大学'),(70,'四川农业大学'),(71,'东北师范大学'),(72,'哈尔滨工业大学'),(73,'北京航空航天大学'),(74,'北京交通大学'),(75,'西南交通大学'),(76,'中国科学技术大学'),(77,'北京外国语大学'),(78,'北京邮电大学'),(79,'西安建筑科技大学'),(80,'新疆大学'),(81,'东南大学'),(82,'对外经济贸易大学'),(83,'北京中医药大学'),(84,'暨南大学'),(85,'北京语言大学'),(86,'华中师范大学'),(87,'北京师范大学'),(88,'哈尔滨工程大学'),(89,'内蒙古大学'),(90,'东华大学'),(91,'解放军信息工程大学'),(92,'上海交通大学医学院 '),(93,'华东理工大学'),(94,'第四军医大学'),(95,'大连海事大学'),(96,'华东师范大学'),(97,'辽宁大学'),(98,'深圳大学'),(99,'中央音乐学院'),(100,'中国协和医科大学');
|
|||
|
|
/*!40000 ALTER TABLE `schools` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `searchbox`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `searchbox`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `searchbox` (
|
|||
|
|
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(30) DEFAULT NULL,
|
|||
|
|
`showsubcat` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
`showsource` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
`showmedium` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
`showcodec` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
`showstandard` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
`showprocessing` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
`showteam` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
`showaudiocodec` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
`catsperrow` smallint(5) unsigned NOT NULL DEFAULT '7',
|
|||
|
|
`catpadding` smallint(5) unsigned NOT NULL DEFAULT '25',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `searchbox`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `searchbox` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `searchbox` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `searchbox` VALUES (4,'chd',1,0,1,1,1,0,1,0,10,7);
|
|||
|
|
/*!40000 ALTER TABLE `searchbox` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `secondicons`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `secondicons`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `secondicons` (
|
|||
|
|
`id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`source` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`medium` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`codec` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`standard` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`processing` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`team` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`audiocodec` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`name` varchar(30) NOT NULL,
|
|||
|
|
`class_name` varchar(255) DEFAULT NULL,
|
|||
|
|
`image` varchar(255) NOT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `secondicons`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `secondicons` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `secondicons` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `secondicons` VALUES (1,0,1,1,0,0,0,0,'Blu-ray/H.264',NULL,'bdh264.png'),(2,0,1,2,0,0,0,0,'Blu-ray/VC-1',NULL,'bdvc1.png'),(3,0,1,4,0,0,0,0,'Blu-ray/MPEG-2',NULL,'bdmpeg2.png'),(4,0,2,1,0,0,0,0,'HD DVD/H.264',NULL,'hddvdh264.png'),(5,0,2,2,0,0,0,0,'HD DVD/VC-1',NULL,'hddvdvc1.png'),(6,0,2,4,0,0,0,0,'HD DVD/MPEG-2',NULL,'hddvdmpeg2.png'),(7,0,3,1,0,0,0,0,'Remux/H.264',NULL,'remuxh264.png'),(8,0,3,2,0,0,0,0,'Remux/VC-1',NULL,'remuxvc1.png'),(9,0,3,4,0,0,0,0,'Remux/MPEG-2',NULL,'remuxmpeg2.png'),(10,0,4,0,0,0,0,0,'AVCHD',NULL,'avchd.png'),(11,0,5,1,0,0,0,0,'HDTV/H.264',NULL,'hdtvh264.png'),(12,0,5,4,0,0,0,0,'HDTV/MPEG-2',NULL,'hdtvmpeg2.png'),(13,0,6,0,0,0,0,0,'DVDR',NULL,'dvdr.png'),(14,0,7,1,0,0,0,0,'Rip/H.264',NULL,'riph264.png'),(15,0,7,3,0,0,0,0,'Rip/Xvid',NULL,'ripxvid.png'),(16,0,8,5,0,0,0,0,'CD/FLAC',NULL,'cdflac.png'),(17,0,8,6,0,0,0,0,'CD/APE',NULL,'cdape.png'),(18,0,8,7,0,0,0,0,'CD/DTS',NULL,'cddts.png'),(19,0,8,9,0,0,0,0,'CD/Other',NULL,'cdother.png'),(20,0,9,5,0,0,0,0,'Extract/FLAC',NULL,'extractflac.png'),(21,0,9,7,0,0,0,0,'Extract/DTS',NULL,'extractdts.png'),(22,0,9,8,0,0,0,0,'Extract/AC-3',NULL,'extractac3.png');
|
|||
|
|
/*!40000 ALTER TABLE `secondicons` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `settings`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `settings`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `settings` (
|
|||
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(255) NOT NULL,
|
|||
|
|
`value` mediumtext,
|
|||
|
|
`created_at` datetime DEFAULT NULL,
|
|||
|
|
`updated_at` datetime DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `uniqe_name` (`name`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=1746 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `settings`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `settings` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `settings` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `settings` VALUES (1,'basic.SITENAME','NexusPHP','2021-01-11 16:16:05','2021-01-20 19:00:59'),(12,'main.site_online','yes','2021-01-11 17:31:23','2021-01-11 17:31:23'),(13,'main.max_torrent_size','1048576','2021-01-11 17:31:23','2021-01-11 17:31:23'),(14,'main.announce_interval','1800','2021-01-11 17:31:23','2021-01-11 17:31:23'),(15,'main.annintertwoage','7','2021-01-11 17:31:23','2021-01-11 17:31:23'),(16,'main.annintertwo','2700','2021-01-11 17:31:23','2021-01-11 17:31:23'),(17,'main.anninterthreeage','30','2021-01-11 17:31:23','2021-01-11 17:31:23'),(18,'main.anninterthree','3600','2021-01-11 17:31:23','2021-01-11 17:31:23'),(19,'main.signup_timeout','259200','2021-01-11 17:31:23','2021-01-11 17:31:23'),(20,'main.minoffervotes','15','2021-01-11 17:31:23','2021-01-11 17:31:23'),(21,'main.offervotetimeout','259200','2021-01-11 17:31:23','2021-01-11 17:31:23'),(22,'main.offeruptimeout','86400','2021-01-11 17:31:23','2021-01-11 17:31:23'),(23,'main.maxsubsize','3145728','2021-01-11 17:31:23','2021-01-11 17:31:23'),(24,'main.postsperpage','10','2021-01-11 17:31:23','2021-01-11 17:31:23'),(25,'main.topicsperpage','20','2021-01-11 17:31:23','2021-01-11 17:31:23'),(26,'main.torrentsperpage','50','2021-01-11 17:31:23','2021-01-11 17:31:23'),(27,'main.maxnewsnum','3','2021-01-11 17:31:23','2021-01-11 17:31:23'),(28,'main.max_dead_torrent_time','21600','2021-01-11 17:31:23','2021-01-11 17:31:23'),(29,'main.maxusers','50000','2021-01-11 17:31:23','2021-01-11 17:31:23'),(30,'main.torrent_dir','torrents','2021-01-11 17:31:23','2021-01-11 17:31:23'),(31,'main.iniupload','0','2021-01-11 17:31:23','2021-01-11 17:31:23'),(32,'main.SITEEMAIL','353856593@qq.com','2021-01-11 17:31:23','2021-01-14 10:47:01'),(33,'main.ACCOUNTANTID','1','2021-01-11 17:31:23','2021-01-12 21:31:25'),(34,'main.ALIPAYACCOUNT','','2021-01-11 17:31:23','2021-01-12 21:31:25'),(35,'main.PAYPALACCOUNT','','2021-01-11 17:31:23','2021-01-12 21:31:25'),(36,'main.SLOGAN','The Ultimate File Sharing Experience','2021-01-11 17:31:23','2021-01-11 17:31:23'),(37,'main.icplicense','','2021-01-11 17:31:23','2021-01-12 21:31:25'),(38,'main.autoclean_interval_one','900','2021-01-11 17:31:23','2021-01-11 17:31:23'),(39,'main.autoclean_interval_two','1800','2021-01-11 17:31:23','2021-01-11 17:31:23'),(40,'main.autoclean_interval_three','3600','2021-01-11 17:31:23','2021-01-11 17:31:23'),(41,'main.autoclean_interval_four','43200','2021-01-11 17:31:23','2021-01-11 17:31:23'),(42,'main.autoclean_interval_five','648000','2021-01-11 17:31:23','2021-01-11 17:31:23'),(43,'main.reportemail','353856593@qq.com','2021-01-11 17:31:23','2021-01-14 10:47:01'),(44,'main.invitesystem','yes','2021-01-11 17:31:23','2021-01-13 01:48:32'),(45,'main.registration','yes','2021-01-11 17:31:23','2021-01-11 17:31:23'),(46,'main.showhotmovies','no','2021-01-11 17:31:23','2021-01-12 21:31:25'),(47,'main.showclassicmovies','no','2021-01-11 17:31:23','2021-01-12 21:31:25'),(48,'main.showimdbinfo','no','2021-01-11 17:31:23','2021-01-19 16:24:29'),(49,'main.enablenfo','yes','2021-01-11 17:31:23','2021-01-11 17:31:23'),(50,'main.enableschool','no','2021-01-11 17:31:23','2021-01-11 17:31:23'),(51,'main.restrictemail','no','2021-01-11 17:31:23','2021-01-11 17:31:23'),(52,'main.showpolls','yes','2021-01-11 17:31:23','2021-01-11 17:31:23'),(53,'main.showstats','yes','2021-01-11 17:31:23','2021-01-11 17:31:23'),(54,'main.showlastxtorrents','no','2021-01-11 17:31:23','2021-01-12 21:31:25'),(55,'main.showtrackerload','yes','2021-01-11 17:31:23','2021-01-11 17:31:23'),(56,'main.showshoutbox','yes','2021-01-11 17:31:23','2021-01-11 17:31:23'),(57,'main.showfunbox','yes','2021-01-11 17:31:23','2021-01-14 12:45:57'),(58,'main.showoffer','yes','2021-01-11 17:31:23','2021-01-11 17:31:23'),(59,'main.sptime','no','2021-01-11 17:31:23','2021-01-11 17:31:23'),(60,'main.showhelpbox','no','2021-01-11 17:31:23','2021-01-12 21:31:25'),(61,'main.enablebitbucket','yes','2021-01-11 17:31:23','2021-01-11 17:31:23'),(62,'main.smalldescription','yes','2021-01-11 17:31:23','2021-01-11 17:31:23'),(63,'main.altname','no','2021-0
|
|||
|
|
/*!40000 ALTER TABLE `settings` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `shoutbox`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `shoutbox`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `shoutbox` (
|
|||
|
|
`id` int(10) NOT NULL AUTO_INCREMENT,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`date` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`text` text NOT NULL,
|
|||
|
|
`type` enum('sb','hb') NOT NULL DEFAULT 'sb',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `shoutbox`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `shoutbox` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `shoutbox` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `shoutbox` VALUES (15,2,1609823605,'[em4]','sb');
|
|||
|
|
/*!40000 ALTER TABLE `shoutbox` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `sitelog`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `sitelog`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `sitelog` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`txt` text NOT NULL,
|
|||
|
|
`security_level` enum('normal','mod') NOT NULL DEFAULT 'normal',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `added` (`added`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=171 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `sitelog`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `sitelog` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `sitelog` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `sitelog` VALUES (1,'2020-12-29 02:34:00','Torrent 1 (中秋礼盒照片) was uploaded by xioamlove','normal'),(2,'2020-12-29 05:53:32','Torrent 1 (中秋礼盒照片) was edited by xioamlove','normal'),(3,'2020-12-29 05:57:12','Torrent 1 (中秋礼盒照片) was edited by xioamlove','normal'),(4,'2020-12-29 05:57:36','Torrent 1 (中秋礼盒照片) was edited by xioamlove','normal'),(5,'2020-12-29 06:01:53','简体中文 Subtitle 1 (手机回收_slices) was uploaded by xioamlove','normal'),(6,'2021-01-07 08:00:58','Ban 1 was removed by 2 (xioamlove)','mod'),(7,'2021-01-07 12:41:28','Tracker MAIN settings updated by xioamlove. January 7, 2021, 12:41 pm','mod'),(8,'2021-01-07 12:47:19','Tracker code settings updated by xioamlove. January 7, 2021, 12:47 pm','mod'),(9,'2021-01-07 13:12:24','Tracker MAIN settings updated by xioamlove. January 7, 2021, 1:12 pm','mod'),(10,'2021-01-07 16:59:10','Torrent 1 (中秋礼盒照片) was edited by xioamlove','normal'),(11,'2021-01-07 17:50:37','Torrent 1 (中秋礼盒照片) was edited by xioamlove','normal'),(12,'2021-01-07 17:51:31','Torrent 1 (中秋礼盒照片) was edited by xioamlove','normal'),(13,'2021-01-09 05:55:39','Torrent 2 ([Nexus] breach-trailer-1_h1080p mov) was uploaded by xioamlove','normal'),(14,'2021-01-09 06:03:11','Torrent 3 ([Nexus] breach-trailer-1_h1080p mov) was uploaded by xioamlove','normal'),(15,'2021-01-10 17:43:57','Tracker ATTACHMENT settings updated by xioamlove. January 10, 2021, 5:43 pm','mod'),(16,'2021-01-10 17:44:05','Tracker ATTACHMENT settings updated by xioamlove. January 10, 2021, 5:44 pm','mod'),(17,'2021-01-10 17:46:07','Tracker ATTACHMENT settings updated by xioamlove. January 10, 2021, 5:46 pm','mod'),(18,'2021-01-10 17:47:32','Tracker ATTACHMENT settings updated by xioamlove. January 10, 2021, 5:47 pm','mod'),(19,'2021-01-10 17:49:13','Tracker ATTACHMENT settings updated by xioamlove. January 10, 2021, 5:49 pm','mod'),(20,'2021-01-10 18:22:27','Tracker ATTACHMENT settings updated by xioamlove. January 10, 2021, 6:22 pm','mod'),(21,'2021-01-11 02:53:06','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 2:53 am','mod'),(22,'2021-01-11 02:57:54','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 2:57 am','mod'),(23,'2021-01-11 03:10:13','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 3:10 am','mod'),(24,'2021-01-11 03:12:37','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 3:12 am','mod'),(25,'2021-01-11 03:34:09','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 3:34 am','mod'),(26,'2021-01-11 04:48:20','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 4:48 am','mod'),(27,'2021-01-11 05:50:02','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 5:50 am','mod'),(28,'2021-01-11 05:52:15','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 5:52 am','mod'),(29,'2021-01-11 05:53:08','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 5:53 am','mod'),(30,'2021-01-11 05:55:57','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 5:55 am','mod'),(31,'2021-01-11 06:10:05','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 6:10 am','mod'),(32,'2021-01-11 06:27:26','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 6:27 am','mod'),(33,'2021-01-11 06:28:53','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 6:28 am','mod'),(34,'2021-01-11 06:29:57','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 6:29 am','mod'),(35,'2021-01-11 06:31:12','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 6:31 am','mod'),(36,'2021-01-11 06:32:13','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 6:32 am','mod'),(37,'2021-01-11 06:53:10','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 6:53 am','mod'),(38,'2021-01-11 06:55:05','Tracker ATTACHMENT settings updated by xioamlove. January 11, 2021, 6:55 am','mod'),(39,'2021-01-11 07:12:17','Tracker ATTAC
|
|||
|
|
/*!40000 ALTER TABLE `sitelog` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `snatched`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `snatched`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `snatched` (
|
|||
|
|
`id` int(10) NOT NULL AUTO_INCREMENT,
|
|||
|
|
`torrentid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`ip` varchar(64) NOT NULL DEFAULT '',
|
|||
|
|
`port` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`uploaded` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`downloaded` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`to_go` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`seedtime` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`leechtime` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`last_action` datetime DEFAULT NULL,
|
|||
|
|
`startdat` datetime DEFAULT NULL,
|
|||
|
|
`completedat` datetime DEFAULT NULL,
|
|||
|
|
`finished` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `torrentid_userid` (`torrentid`,`userid`),
|
|||
|
|
KEY `userid` (`userid`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `snatched`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `snatched` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `snatched` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `snatched` VALUES (1,1,2,'103.40.249.178',44617,0,0,0,766300,29253,'2021-01-04 17:42:32','2021-01-04 04:11:09','0000-00-00 00:00:00','no'),(2,4,3,'103.40.249.178',44617,0,0,0,1541739,28830,'2021-01-20 17:59:49','2021-01-19 13:41:43',NULL,'no'),(3,4,2,'120.229.33.248',33376,0,0,130596609,0,641781,'2021-01-20 17:55:25','2021-01-19 15:38:19',NULL,'no');
|
|||
|
|
/*!40000 ALTER TABLE `snatched` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `sources`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `sources`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `sources` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(30) NOT NULL,
|
|||
|
|
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `sources`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `sources` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `sources` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `sources` VALUES (1,'Blu-ray',0),(2,'HD DVD',0),(3,'DVD',0),(4,'HDTV',0),(5,'TV',0),(6,'Other',0);
|
|||
|
|
/*!40000 ALTER TABLE `sources` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `staffmessages`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `staffmessages`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `staffmessages` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`sender` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`msg` text,
|
|||
|
|
`subject` varchar(128) NOT NULL DEFAULT '',
|
|||
|
|
`answeredby` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`answered` tinyint(1) NOT NULL DEFAULT '0',
|
|||
|
|
`answer` text,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `staffmessages`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `staffmessages` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `staffmessages` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `staffmessages` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `standards`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `standards`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `standards` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(30) NOT NULL,
|
|||
|
|
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `standards`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `standards` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `standards` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `standards` VALUES (1,'1080p',0),(2,'1080i',0),(3,'720p',0),(4,'SD',0);
|
|||
|
|
/*!40000 ALTER TABLE `standards` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `stylesheets`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `stylesheets`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `stylesheets` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`uri` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`name` varchar(64) NOT NULL DEFAULT '',
|
|||
|
|
`addicode` text,
|
|||
|
|
`designer` varchar(50) NOT NULL DEFAULT '',
|
|||
|
|
`comment` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `stylesheets`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `stylesheets` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `stylesheets` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `stylesheets` VALUES (2,'styles/BlueGene/','Blue Gene','','Zantetsu','HDBits clone'),(3,'styles/BlasphemyOrange/','Blasphemy Orange','','Zantetsu','Bit-HDTV clone'),(4,'styles/Classic/','Classic','','Zantetsu','TBSource original mod'),(6,'styles/DarkPassion/','Dark Passion','','Zantetsu',''),(7,'styles/BambooGreen/','Bamboo Green','','Xia Zuojie','Baidu Hi clone');
|
|||
|
|
/*!40000 ALTER TABLE `stylesheets` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `subs`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `subs`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `subs` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`torrent_id` mediumint(8) unsigned NOT NULL,
|
|||
|
|
`lang_id` smallint(5) unsigned NOT NULL,
|
|||
|
|
`title` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`filename` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`size` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`uppedby` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`anonymous` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`hits` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`ext` varchar(10) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `torrentid_langid` (`torrent_id`,`lang_id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `subs`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `subs` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `subs` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `subs` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `suggest`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `suggest`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `suggest` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`keywords` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`adddate` datetime DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `keywords` (`keywords`(4)),
|
|||
|
|
KEY `adddate` (`adddate`)
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `suggest`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `suggest` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `suggest` DISABLE KEYS */;
|
|||
|
|
/*!40000 ALTER TABLE `suggest` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `sysoppanel`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `sysoppanel`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `sysoppanel` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(128) NOT NULL DEFAULT '',
|
|||
|
|
`url` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`info` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=3028 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `sysoppanel`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `sysoppanel` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `sysoppanel` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `sysoppanel` VALUES (1,'Delete disabled users','deletedisabled.php','Delete all disabled users'),(2,'Manage tracker forum','forummanage.php','Edit/Delete forum'),(3,'MySQL Stats','mysql_stats.php','See MySql stats'),(4,'Mass mailer','massmail.php','Send e-mail to all users on the tracker'),(5,'Do cleanup','docleanup.php','Do cleanup functions'),(6,'Ban System','bans.php','Ban / Unban IP'),(7,'Failed Logins','maxlogin.php','Show Failed Login Attempts'),(8,'Bitbucket','bitbucketlog.php','Bitbucket Log'),(9,'Ban EMAIL address','bannedemails.php','Ban EMAILs stop registration.'),(10,'Allow EMAIL address','allowedemails.php','Allow EMAIL registration.'),(11,'Location','location.php','Manage location and location speed'),(12,'Add Upload','amountupload.php','Add upload to certain classes');
|
|||
|
|
/*!40000 ALTER TABLE `sysoppanel` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `teams`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `teams`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `teams` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(30) NOT NULL,
|
|||
|
|
`sort_index` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `teams`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `teams` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `teams` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `teams` VALUES (1,'HDS',0),(2,'CHD',0),(3,'MySiLU',0),(4,'WiKi',0),(5,'Other',0);
|
|||
|
|
/*!40000 ALTER TABLE `teams` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `thanks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `thanks`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `thanks` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`torrentid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `torrentid_id` (`torrentid`,`id`),
|
|||
|
|
KEY `torrentid_userid` (`torrentid`,`userid`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `thanks`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `thanks` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `thanks` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `thanks` VALUES (1,1,2),(2,4,3),(3,4,2);
|
|||
|
|
/*!40000 ALTER TABLE `thanks` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `topics`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `topics`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `topics` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`userid` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`subject` varchar(128) NOT NULL,
|
|||
|
|
`locked` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`forumid` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`firstpost` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`lastpost` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`sticky` enum('no','yes') NOT NULL DEFAULT 'no',
|
|||
|
|
`hlcolor` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`views` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
KEY `userid` (`userid`),
|
|||
|
|
KEY `subject` (`subject`),
|
|||
|
|
KEY `forumid_lastpost` (`forumid`,`lastpost`),
|
|||
|
|
KEY `forumid_sticky_lastpost` (`forumid`,`sticky`,`lastpost`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `topics`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `topics` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `topics` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `topics` VALUES (1,2,'Hi, Every body','yes',1,1,6,'yes',0,36);
|
|||
|
|
/*!40000 ALTER TABLE `topics` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `torrents`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `torrents`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `torrents` (
|
|||
|
|
`id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`info_hash` binary(20) NOT NULL,
|
|||
|
|
`name` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`filename` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`save_as` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`descr` text,
|
|||
|
|
`small_descr` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`ori_descr` text,
|
|||
|
|
`category` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`source` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`medium` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`codec` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`standard` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`processing` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`team` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`audiocodec` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`size` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`type` enum('single','multi') NOT NULL DEFAULT 'single',
|
|||
|
|
`numfiles` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`comments` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`views` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`hits` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`times_completed` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`leechers` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`seeders` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`last_action` datetime DEFAULT NULL,
|
|||
|
|
`visible` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`banned` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`owner` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`nfo` blob,
|
|||
|
|
`sp_state` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
|||
|
|
`promotion_time_type` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`promotion_until` datetime DEFAULT NULL,
|
|||
|
|
`anonymous` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`url` int(10) unsigned DEFAULT NULL,
|
|||
|
|
`pos_state` enum('normal','sticky') NOT NULL DEFAULT 'normal',
|
|||
|
|
`cache_stamp` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`picktype` enum('hot','classic','recommended','normal') NOT NULL DEFAULT 'normal',
|
|||
|
|
`picktime` datetime DEFAULT NULL,
|
|||
|
|
`last_reseed` datetime DEFAULT NULL,
|
|||
|
|
`pt_gen` mediumtext,
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `info_hash` (`info_hash`),
|
|||
|
|
KEY `owner` (`owner`),
|
|||
|
|
KEY `visible_pos_id` (`visible`,`pos_state`,`id`),
|
|||
|
|
KEY `url` (`url`),
|
|||
|
|
KEY `category_visible_banned` (`category`,`visible`,`banned`),
|
|||
|
|
KEY `visible_banned_pos_id` (`visible`,`banned`,`pos_state`,`id`),
|
|||
|
|
FULLTEXT KEY `name` (`name`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `torrents`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `torrents` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `torrents` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `torrents` VALUES (1,'Zѓ0<EFBFBD>8<EFBFBD><EFBFBD><EFBFBD>X\<5C>\<5C>c<63>5','中秋礼盒照片','中秋礼盒照片.torrent','中秋礼盒照片','先不要来图,看下 [em3] ','这是副标题','先不要来图,看下',401,0,2,1,1,0,1,0,37193134,'2020-12-29 02:34:00','multi',24,5,140,3,0,0,0,'2021-01-04 10:51:02','yes','no',2,'',1,0,'0000-00-00 00:00:00','no',0,'normal',0,'normal','0000-00-00 00:00:00','0000-00-00 00:00:00','{\"douban\":{\"link\":\"https:\\/\\/movie.douban.com\\/subject\\/1794171\\/)\",\"data\":{\"success\":true,\"error\":null,\"format\":\"[img]https:\\/\\/img9.doubanio.com\\/view\\/photo\\/l_ratio_poster\\/public\\/p1188042816.jpg[\\/img]\\n\\n\\u25ce\\u8bd1\\u3000\\u3000\\u540d\\u3000\\u53d8\\u5f62\\u91d1\\u521a\\/\\u53d8\\u5f62\\u91d1\\u521a\\u7535\\u5f71\\u7248\\n\\u25ce\\u7247\\u3000\\u3000\\u540d\\u3000Transformers\\n\\u25ce\\u5e74\\u3000\\u3000\\u4ee3\\u30002007\\n\\u25ce\\u4ea7\\u3000\\u3000\\u5730\\u3000\\u7f8e\\u56fd\\n\\u25ce\\u7c7b\\u3000\\u3000\\u522b\\u3000\\u52a8\\u4f5c \\/ \\u79d1\\u5e7b\\n\\u25ce\\u8bed\\u3000\\u3000\\u8a00\\u3000\\u82f1\\u8bed,\\u897f\\u73ed\\u7259\\u8bed\\n\\u25ce\\u4e0a\\u6620\\u65e5\\u671f\\u30002007-07-03(\\u7f8e\\u56fd) \\/ 2007-07-11(\\u4e2d\\u56fd\\u5927\\u9646)\\n\\u25ceIMDb\\u8bc4\\u5206 7\\/10 from 595225 users\\n\\u25ceIMDb\\u94fe\\u63a5 https:\\/\\/www.imdb.com\\/title\\/tt0418279\\/\\n\\u25ce\\u8c46\\u74e3\\u8bc4\\u5206\\u30008.3\\/10 from 394955 users\\n\\u25ce\\u8c46\\u74e3\\u94fe\\u63a5\\u3000https:\\/\\/movie.douban.com\\/subject\\/1794171\\/\\n\\u25ce\\u7247\\u3000\\u3000\\u957f\\u3000144\\u5206\\u949f\\n\\u25ce\\u5bfc\\u3000\\u3000\\u6f14\\u3000\\u8fc8\\u514b\\u5c14\\u00b7\\u8d1d Michael Bay\\n\\u25ce\\u7f16\\u3000\\u3000\\u5267\\u3000\\u7f57\\u4f2f\\u6258\\u00b7\\u5965\\u5947 Roberto Orci \\/ \\u827e\\u91cc\\u514b\\u65af\\u00b7\\u5e93\\u5179\\u66fc Alex Kurtzman \\/ \\u7ea6\\u7ff0\\u00b7\\u7f57\\u6770\\u65af John Rogers\\n\\u25ce\\u4e3b\\u3000\\u3000\\u6f14\\u3000\\u5e0c\\u4e9a\\u00b7\\u62c9\\u535a\\u592b Shia LaBeouf\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u6cf0\\u745e\\u65af\\u00b7\\u5409\\u5e03\\u68ee Tyrese Gibson\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u4e54\\u4ec0\\u00b7\\u675c\\u54c8\\u660e Josh Duhamel\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u5b89\\u4e1c\\u5c3c\\u00b7\\u5b89\\u5fb7\\u68ee Anthony Anderson\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u6885\\u6839\\u00b7\\u798f\\u514b\\u65af Megan Fox\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u745e\\u5207\\u5c14\\u00b7\\u6cf0\\u52d2 Rachael Taylor\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u7ea6\\u7ff0\\u00b7\\u7279\\u6258\\u7f57 John Turturro\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u5f3a\\u00b7\\u6c83\\u7279 Jon Voight\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u8fc8\\u514b\\u5c14\\u00b7\\u5965\\u5c3c\\u5c14 Michael O'Neill\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u51ef\\u6587\\u00b7\\u675c\\u6069 Kevin Dunn\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u6731\\u4e3d\\u53f6\\u00b7\\u6000\\u7279 Julie White\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u96e8\\u679c\\u00b7\\u7ef4\\u6587 Hugo Weaving\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u8fc8\\u514b\\u5c14\\u00b7\\u8d1d Michael Bay\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u5965\\u9edb\\u5854\\u00b7\\u5b89\\u7eb3\\u5e03\\u5c14 Odette Annable\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u79d1\\u5c14\\u987f\\u00b7\\u6d77\\u6069\\u65af Colton Haynes\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u963f\\u83ab\\u91cc\\u00b7\\u8bfa\\u62c9\\u65af\\u79d1 Amaury Nolasco\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u59dc\\u5e7f\\u6d9b Guangtao Jiang\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u7ea6\\u7ff0\\u00b7\\u7f57\\u5bbe\\u68ee John Robinson\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u4f2f\\u5c3c\\u00b7\\u9ea6\\u514b Bernie Mac\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u7279\\u62c9\\u7ef4\\u65af\\u00b7\\u8303\\u00b7\\u6587\\u514b Travis Van Winkle\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u5f7c\\u7279\\u00b7\\u5e93\\u4f26 Peter Cullen\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u683c\\u4f26\\u00b7\\u83ab\\u8096\\u5c14 Glenn Morshower\\n\\u3000\\u3000\\u3000\\u3000 \\u3000\\u8428\\u66fc\\u58
|
|||
|
|
/*!40000 ALTER TABLE `torrents` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `torrents_state`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `torrents_state`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `torrents_state` (
|
|||
|
|
`global_sp_state` tinyint(3) unsigned NOT NULL DEFAULT '1'
|
|||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `torrents_state`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `torrents_state` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `torrents_state` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `torrents_state` VALUES (1);
|
|||
|
|
/*!40000 ALTER TABLE `torrents_state` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `uploadspeed`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `uploadspeed`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `uploadspeed` (
|
|||
|
|
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`name` varchar(50) DEFAULT NULL,
|
|||
|
|
PRIMARY KEY (`id`)
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `uploadspeed`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `uploadspeed` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `uploadspeed` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `uploadspeed` VALUES (1,'64kbps'),(2,'128kbps'),(3,'256kbps'),(4,'512kbps'),(5,'768kbps'),(6,'1Mbps'),(7,'1.5Mbps'),(8,'2Mbps'),(9,'3Mbps'),(10,'4Mbps'),(11,'5Mbps'),(12,'6Mbps'),(13,'7Mbps'),(14,'8Mbps'),(15,'9Mbps'),(16,'10Mbps'),(17,'48Mbps'),(18,'100Mbit');
|
|||
|
|
/*!40000 ALTER TABLE `uploadspeed` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Table structure for table `users`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
DROP TABLE IF EXISTS `users`;
|
|||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|||
|
|
/*!40101 SET character_set_client = utf8 */;
|
|||
|
|
CREATE TABLE `users` (
|
|||
|
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
|||
|
|
`username` varchar(40) NOT NULL DEFAULT '',
|
|||
|
|
`passhash` varchar(32) NOT NULL DEFAULT '',
|
|||
|
|
`secret` varbinary(20) NOT NULL,
|
|||
|
|
`email` varchar(80) NOT NULL DEFAULT '',
|
|||
|
|
`status` enum('pending','confirmed') NOT NULL DEFAULT 'pending',
|
|||
|
|
`added` datetime DEFAULT NULL,
|
|||
|
|
`last_login` datetime DEFAULT NULL,
|
|||
|
|
`last_access` datetime DEFAULT NULL,
|
|||
|
|
`last_home` datetime DEFAULT NULL,
|
|||
|
|
`last_offer` datetime DEFAULT NULL,
|
|||
|
|
`forum_access` datetime DEFAULT NULL,
|
|||
|
|
`last_staffmsg` datetime DEFAULT NULL,
|
|||
|
|
`last_pm` datetime DEFAULT NULL,
|
|||
|
|
`last_comment` datetime DEFAULT NULL,
|
|||
|
|
`last_post` datetime DEFAULT NULL,
|
|||
|
|
`last_browse` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`last_music` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`last_catchup` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`editsecret` varbinary(20) NOT NULL,
|
|||
|
|
`privacy` enum('strong','normal','low') NOT NULL DEFAULT 'normal',
|
|||
|
|
`stylesheet` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
|||
|
|
`caticon` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
|||
|
|
`fontsize` enum('small','medium','large') NOT NULL DEFAULT 'medium',
|
|||
|
|
`info` text,
|
|||
|
|
`acceptpms` enum('yes','friends','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`commentpm` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`ip` varchar(64) NOT NULL DEFAULT '',
|
|||
|
|
`class` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
|||
|
|
`max_class_once` tinyint(3) NOT NULL DEFAULT '1',
|
|||
|
|
`avatar` varchar(255) NOT NULL DEFAULT '',
|
|||
|
|
`uploaded` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`downloaded` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`seedtime` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`leechtime` bigint(20) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`title` varchar(30) NOT NULL DEFAULT '',
|
|||
|
|
`country` smallint(5) unsigned NOT NULL DEFAULT '107',
|
|||
|
|
`notifs` varchar(500) DEFAULT NULL,
|
|||
|
|
`modcomment` text,
|
|||
|
|
`enabled` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`avatars` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`donor` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`donated` decimal(8,2) NOT NULL DEFAULT '0.00',
|
|||
|
|
`donated_cny` decimal(8,2) NOT NULL DEFAULT '0.00',
|
|||
|
|
`donoruntil` datetime DEFAULT NULL,
|
|||
|
|
`warned` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`warneduntil` datetime DEFAULT NULL,
|
|||
|
|
`noad` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`noaduntil` datetime DEFAULT NULL,
|
|||
|
|
`torrentsperpage` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`topicsperpage` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`postsperpage` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`clicktopic` enum('firstpage','lastpage') NOT NULL DEFAULT 'firstpage',
|
|||
|
|
`deletepms` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`savepms` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`showhot` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`showclassic` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`support` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`picker` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`stafffor` varchar(255) NOT NULL,
|
|||
|
|
`supportfor` varchar(255) NOT NULL,
|
|||
|
|
`pickfor` varchar(255) NOT NULL,
|
|||
|
|
`supportlang` varchar(50) NOT NULL,
|
|||
|
|
`passkey` varchar(32) NOT NULL DEFAULT '',
|
|||
|
|
`promotion_link` varchar(32) DEFAULT NULL,
|
|||
|
|
`uploadpos` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`forumpost` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`downloadpos` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`clientselect` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`signatures` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`signature` varchar(800) NOT NULL DEFAULT '',
|
|||
|
|
`lang` smallint(5) unsigned NOT NULL DEFAULT '6',
|
|||
|
|
`cheat` smallint(6) NOT NULL DEFAULT '0',
|
|||
|
|
`download` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`upload` int(10) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`isp` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`invites` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`invited_by` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`gender` enum('Male','Female','N/A') NOT NULL DEFAULT 'N/A',
|
|||
|
|
`vip_added` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`vip_until` datetime DEFAULT NULL,
|
|||
|
|
`seedbonus` decimal(10,1) NOT NULL DEFAULT '0.0',
|
|||
|
|
`charity` decimal(10,1) NOT NULL DEFAULT '0.0',
|
|||
|
|
`bonuscomment` text,
|
|||
|
|
`parked` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`leechwarn` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`leechwarnuntil` datetime DEFAULT NULL,
|
|||
|
|
`lastwarned` datetime DEFAULT NULL,
|
|||
|
|
`timeswarned` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`warnedby` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|||
|
|
`sbnum` smallint(5) unsigned NOT NULL DEFAULT '70',
|
|||
|
|
`sbrefresh` smallint(5) unsigned NOT NULL DEFAULT '120',
|
|||
|
|
`hidehb` enum('yes','no') DEFAULT 'no',
|
|||
|
|
`showimdb` enum('yes','no') DEFAULT 'yes',
|
|||
|
|
`showdescription` enum('yes','no') DEFAULT 'yes',
|
|||
|
|
`showcomment` enum('yes','no') DEFAULT 'yes',
|
|||
|
|
`showclienterror` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`showdlnotice` tinyint(1) NOT NULL DEFAULT '1',
|
|||
|
|
`tooltip` enum('minorimdb','medianimdb','off') NOT NULL DEFAULT 'off',
|
|||
|
|
`shownfo` enum('yes','no') DEFAULT 'yes',
|
|||
|
|
`timetype` enum('timeadded','timealive') DEFAULT 'timealive',
|
|||
|
|
`appendsticky` enum('yes','no') DEFAULT 'yes',
|
|||
|
|
`appendnew` enum('yes','no') DEFAULT 'yes',
|
|||
|
|
`appendpromotion` enum('highlight','word','icon','off') DEFAULT 'icon',
|
|||
|
|
`appendpicked` enum('yes','no') DEFAULT 'yes',
|
|||
|
|
`dlicon` enum('yes','no') DEFAULT 'yes',
|
|||
|
|
`bmicon` enum('yes','no') DEFAULT 'yes',
|
|||
|
|
`showsmalldescr` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`showcomnum` enum('yes','no') DEFAULT 'yes',
|
|||
|
|
`showlastcom` enum('yes','no') DEFAULT 'no',
|
|||
|
|
`showlastpost` enum('yes','no') NOT NULL DEFAULT 'no',
|
|||
|
|
`pmnum` tinyint(3) unsigned NOT NULL DEFAULT '10',
|
|||
|
|
`school` smallint(5) unsigned NOT NULL DEFAULT '35',
|
|||
|
|
`showfb` enum('yes','no') NOT NULL DEFAULT 'yes',
|
|||
|
|
`page` varchar(255) DEFAULT '',
|
|||
|
|
PRIMARY KEY (`id`),
|
|||
|
|
UNIQUE KEY `username` (`username`),
|
|||
|
|
KEY `status_added` (`status`,`added`),
|
|||
|
|
KEY `ip` (`ip`),
|
|||
|
|
KEY `uploaded` (`uploaded`),
|
|||
|
|
KEY `downloaded` (`downloaded`),
|
|||
|
|
KEY `country` (`country`),
|
|||
|
|
KEY `last_access` (`last_access`),
|
|||
|
|
KEY `enabled` (`enabled`),
|
|||
|
|
KEY `warned` (`warned`),
|
|||
|
|
KEY `cheat` (`cheat`),
|
|||
|
|
KEY `class` (`class`),
|
|||
|
|
KEY `passkey` (`passkey`(8))
|
|||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
|
|||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
|||
|
|
|
|||
|
|
--
|
|||
|
|
-- Dumping data for table `users`
|
|||
|
|
--
|
|||
|
|
|
|||
|
|
LOCK TABLES `users` WRITE;
|
|||
|
|
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
|
|||
|
|
INSERT INTO `users` VALUES (2,'xioamlove','6f39c1646001c2799ef073a1e61537f7','rfnhkdqroltfvsknimvp','353856593@qq.com','confirmed','2020-12-28 02:27:01','2021-01-21 09:37:07','2021-01-21 15:29:00','2021-01-21 15:29:00','2021-01-20 18:11:18','2021-01-20 18:11:00','0000-00-00 00:00:00','0000-00-00 00:00:00','2021-01-05 13:14:05','2021-01-04 12:13:03',1611193030,0,3,'ommswfwxjxlmropmsxnh','normal',3,1,'medium',NULL,'yes','yes','116.62.176.31',16,1,'',0,0,766300,29253,'',8,NULL,NULL,'yes','yes','no',0.00,0.00,'0000-00-00 00:00:00','no','0000-00-00 00:00:00','no','0000-00-00 00:00:00',0,0,0,'firstpage','yes','no','yes','yes','no','no','','','','','102875e936dbd8ec3f1a7569b3096ee4',NULL,'yes','yes','yes',20,'yes','',25,0,0,0,0,0,0,'Male','no','0000-00-00 00:00:00',67.0,0.0,NULL,'no','no','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,70,120,'no','yes','yes','yes','no',0,'off','yes','timealive','yes','yes','icon','yes','yes','yes','yes','yes','no','no',10,35,'yes',''),(3,'tt','cc4d2ddf4895b8e62b7ac68daec8d01d','smkxgewrsiperkknjlqf','1939737565@qq.com','confirmed','2021-01-05 16:20:36','2021-01-19 19:37:37','2021-01-21 01:36:23','2021-01-20 06:31:24','2021-01-20 05:06:51','2021-01-20 08:25:04','0000-00-00 00:00:00','0000-00-00 00:00:00','2021-01-19 21:18:23','0000-00-00 00:00:00',1611192978,0,0,'','normal',3,1,'medium',NULL,'yes','yes','103.40.249.178',1,1,'',0,0,0,0,'',8,NULL,NULL,'yes','yes','no',0.00,0.00,'0000-00-00 00:00:00','no','0000-00-00 00:00:00','no','0000-00-00 00:00:00',0,0,0,'firstpage','yes','no','yes','yes','no','no','','','','','4071d164e38408cde796ce1b0e4a42e2',NULL,'yes','yes','yes',20,'yes','',25,0,0,0,0,0,0,'Male','no','0000-00-00 00:00:00',17.5,0.0,NULL,'no','no','0000-00-00 00:00:00','0000-00-00 00:00:00',0,0,70,120,'no','yes','yes','yes','no',0,'off','yes','timealive','yes','yes','icon','yes','yes','yes','yes','yes','no','no',10,35,'yes','');
|
|||
|
|
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
|
|||
|
|
UNLOCK TABLES;
|
|||
|
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
|||
|
|
|
|||
|
|
/*!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 */;
|
|||
|
|
|
|||
|
|
-- Dump completed on 2021-01-22 1:19:55
|