1 Star 0 Fork 57

DadySuu/SyncMysqlToElasticsearch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
teemoliu_init.sql 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
TeemoLiu 提交于 2019-03-20 14:25 . 增加初始化文件
/*
Navicat Premium Data Transfer
Source Server : 127.0.0.1
Source Server Type : MySQL
Source Server Version : 50718
Source Host : localhost:3306
Source Schema : teemoliu
Target Server Type : MySQL
Target Server Version : 50718
File Encoding : 65001
Date: 20/03/2019 14:18:29
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for role
-- ----------------------------
DROP TABLE IF EXISTS `role`;
CREATE TABLE `role` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- ----------------------------
-- Table structure for user
-- ----------------------------
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
SET FOREIGN_KEY_CHECKS = 1;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/dadysuu/SyncMysqlToElasticsearch.git
[email protected]:dadysuu/SyncMysqlToElasticsearch.git
dadysuu
SyncMysqlToElasticsearch
SyncMysqlToElasticsearch
master

搜索帮助