/* Navicat Premium Data Transfer Source Server : cxz Source Server Type : MySQL Source Server Version : 50720 Source Host : localhost Source Database : mooctest_user Target Server Type : MySQL Target Server Version : 50720 File Encoding : utf-8 Date: 02/14/2018 16:04:18 PM */ SET NAMES utf8; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for `medal` -- ---------------------------- DROP TABLE IF EXISTS `medal`; CREATE TABLE `medal` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `img_url` varchar(255) DEFAULT NULL, `type` bigint(20) NOT NULL, `is_deleted` bit(1) NOT NULL, `create_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for `user_2_integral` -- ---------------------------- DROP TABLE IF EXISTS `user_2_integral`; CREATE TABLE `user_2_integral` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `points` bigint(20) DEFAULT NULL, `type` bigint(20) DEFAULT NULL, `source` varchar(255) DEFAULT NULL, `create_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for `user_2_medal` -- ---------------------------- DROP TABLE IF EXISTS `user_2_medal`; CREATE TABLE `user_2_medal` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `medal_id` bigint(20) NOT NULL, `create_time` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for `user_integral` -- ---------------------------- DROP TABLE IF EXISTS `user_integral`; CREATE TABLE `user_integral` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `total` bigint(20) DEFAULT NULL, `enabled` bit(1) NOT NULL, `create_time` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; SET FOREIGN_KEY_CHECKS = 1;