forked from MarkerHub/vueblog
-
Notifications
You must be signed in to change notification settings - Fork 0
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
6 changed files
with
89 additions
and
37 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,28 @@ | ||
# Compiled class file | ||
*.class | ||
|
||
# Log file | ||
*.log | ||
|
||
# BlueJ files | ||
*.ctxt | ||
|
||
# Mobile Tools for Java (J2ME) | ||
.mtj.tmp/ | ||
|
||
**/.idea/** | ||
**/target/** | ||
|
||
*.iml | ||
|
||
# Package Files # | ||
*.jar | ||
*.war | ||
*.nar | ||
*.ear | ||
*.zip | ||
*.tar.gz | ||
*.rar | ||
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* |
This file was deleted.
Oops, something went wrong.
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
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
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
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,59 @@ | ||
/* | ||
Navicat MySQL Data Transfer | ||
Source Server : localhost | ||
Source Server Version : 50717 | ||
Source Host : localhost:3306 | ||
Source Database : markerhub | ||
Target Server Type : MYSQL | ||
Target Server Version : 50717 | ||
File Encoding : 65001 | ||
Date: 2020-05-14 11:09:07 | ||
*/ | ||
|
||
SET FOREIGN_KEY_CHECKS=0; | ||
|
||
-- ---------------------------- | ||
-- Table structure for m_blog | ||
-- ---------------------------- | ||
DROP TABLE IF EXISTS `m_blog`; | ||
CREATE TABLE `m_blog` ( | ||
`id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
`title` varchar(255) NOT NULL, | ||
`description` varchar(255) NOT NULL, | ||
`content` longtext, | ||
`created` datetime NOT NULL ON UPDATE CURRENT_TIMESTAMP, | ||
`status` tinyint(4) DEFAULT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4; | ||
|
||
-- ---------------------------- | ||
-- Records of m_blog | ||
-- ---------------------------- | ||
INSERT INTO `m_blog` VALUES ('1', '测试测试条田', '这里是摘要哈哈哈', '内容???', '2020-05-14 09:41:15', '0'); | ||
INSERT INTO `m_blog` VALUES ('2', '最值得学习的博客项目eblog', 'eblog是一个基于Springboot2.1.2开发的博客学习项目,为了让项目融合更多的知识点,达到学习目的,编写了详细的从0到1开发文档。主要学习包括:自定义Freemarker标签,使用shiro+redis完成了会话共享,redis的zset结构完成本周热议排行榜,t-io+websocket完成即时消息通知和群聊,rabbitmq+elasticsearch完成博客内容搜索引擎等。值得学习的地方很多!', null, '2020-05-14 10:20:05', '0'); | ||
INSERT INTO `m_blog` VALUES ('3', '公众号MarkerHub文章索引', '梳理Java知识,解析开源项目! 公众号【MarkerHub】的文章分类索引,直联公众号文章链接!https://github.com/MarkerHub/JavaIndex', null, '2020-05-14 10:20:55', '0'); | ||
|
||
-- ---------------------------- | ||
-- Table structure for m_user | ||
-- ---------------------------- | ||
DROP TABLE IF EXISTS `m_user`; | ||
CREATE TABLE `m_user` ( | ||
`id` bigint(20) NOT NULL AUTO_INCREMENT, | ||
`username` varchar(64) DEFAULT NULL, | ||
`avatar` varchar(255) DEFAULT NULL, | ||
`email` varchar(64) DEFAULT NULL, | ||
`password` varchar(64) DEFAULT NULL, | ||
`status` int(5) NOT NULL, | ||
`created` datetime DEFAULT NULL, | ||
`last_login` datetime DEFAULT NULL, | ||
PRIMARY KEY (`id`), | ||
KEY `UK_USERNAME` (`username`) USING BTREE | ||
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; | ||
|
||
-- ---------------------------- | ||
-- Records of m_user | ||
-- ---------------------------- | ||
INSERT INTO `m_user` VALUES ('1', '吕一明', 'https://image-1300566513.cos.ap-guangzhou.myqcloud.com/upload/images/5a9f48118166308daba8b6da7e466aab.jpg', null, '96e79218965eb72c92a549dd5a330112', '0', '2020-04-20 10:44:01', null); |