-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
140 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
-- MySQL dump 10.13 Distrib 5.7.29, for Linux (x86_64) | ||
-- | ||
-- Host: localhost Database: blogwind | ||
-- ------------------------------------------------------ | ||
-- Server version 5.7.29-0ubuntu0.16.04.1 | ||
|
||
/*!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 */; | ||
|
||
-- | ||
-- Table structure for table `articles` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `articles`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
CREATE TABLE `articles` ( | ||
`index` int(11) NOT NULL AUTO_INCREMENT, | ||
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`blogger` int(11) NOT NULL, | ||
`content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, | ||
`ref` int(11) NOT NULL DEFAULT '0', | ||
`add_date` datetime(6) DEFAULT NULL, | ||
`cate` int(11) DEFAULT NULL, | ||
`Comment` int(11) NOT NULL DEFAULT '0', | ||
`Recommend` smallint(6) NOT NULL DEFAULT '0', | ||
PRIMARY KEY (`index`), | ||
KEY `IX_Articles` (`add_date`), | ||
KEY `IX_Articles_1` (`blogger`), | ||
KEY `IX_Articles_2` (`cate`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=113427 DEFAULT CHARSET=utf8mb4; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- Table structure for table `blogger` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `blogger`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
CREATE TABLE `blogger` ( | ||
`index` int(11) NOT NULL AUTO_INCREMENT, | ||
`id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`nick` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`DOB` datetime NOT NULL, | ||
`blogname` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`blogskin` int(11) NOT NULL, | ||
`email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`visitor` int(11) NOT NULL DEFAULT '0', | ||
`intro` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`blogs` int(11) NOT NULL DEFAULT '0', | ||
`IP` char(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`TS` tinyint(1) NOT NULL DEFAULT '0', | ||
`Last_log` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, | ||
`Last_post` datetime DEFAULT NULL, | ||
`Activate` tinyint(1) NOT NULL DEFAULT '0', | ||
`Reveal` tinyint(1) NOT NULL DEFAULT '1', | ||
`userpic` int(11) NOT NULL DEFAULT '20', | ||
`lang` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'zh_cn', | ||
`widget` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
PRIMARY KEY (`index`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=5657 DEFAULT CHARSET=utf8mb4; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- Table structure for table `comment` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `comment`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
CREATE TABLE `comment` ( | ||
`index` int(11) NOT NULL AUTO_INCREMENT, | ||
`blogger` int(11) DEFAULT NULL COMMENT 'this comment is for which blogger', | ||
`article` int(11) NOT NULL, | ||
`title` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'this commend is to which article', | ||
`content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`author` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`homepage` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`add_date` datetime(6) NOT NULL, | ||
`ip` varchar(15) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
`utype` tinyint(3) unsigned NOT NULL DEFAULT '0', | ||
`uid` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, | ||
PRIMARY KEY (`index`), | ||
KEY `IX_Comment` (`article`), | ||
KEY `IX_Comment_1` (`blogger`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=256280 DEFAULT CHARSET=utf8mb4; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- 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` int(11) NOT NULL AUTO_INCREMENT, | ||
`blogger` int(11) NOT NULL, | ||
`link` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`URL` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`reveal` tinyint(1) NOT NULL DEFAULT '1', | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=11065 DEFAULT CHARSET=utf8mb4; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
|
||
-- | ||
-- Table structure for table `userdefinecategory` | ||
-- | ||
|
||
DROP TABLE IF EXISTS `userdefinecategory`; | ||
/*!40101 SET @saved_cs_client = @@character_set_client */; | ||
/*!40101 SET character_set_client = utf8 */; | ||
CREATE TABLE `userdefinecategory` ( | ||
`index` int(11) NOT NULL AUTO_INCREMENT, | ||
`blogger` int(11) NOT NULL, | ||
`cate` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, | ||
`files` int(11) NOT NULL DEFAULT '0', | ||
PRIMARY KEY (`index`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=10757 DEFAULT CHARSET=utf8mb4; | ||
/*!40101 SET character_set_client = @saved_cs_client */; | ||
/*!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 2020-03-23 21:12:11 |