/* Navicat Premium Data Transfer Source Server : localhost Source Server Type : MySQL Source Server Version : 80017 Source Host : localhost:3306 Source Schema : matrix Target Server Type : MySQL Target Server Version : 80017 File Encoding : 65001 Date: 12/01/2020 21:35:09 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for account -- ---------------------------- DROP TABLE IF EXISTS `account`; CREATE TABLE `account` ( `id` int(11) NOT NULL AUTO_INCREMENT, `account_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `type` int(11) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `account` (`account_id`,`user_id`), KEY `tp` (`user_id`,`type`), CONSTRAINT `account_ibfk_1` FOREIGN KEY (`user_id`) REFERENCES `user` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of account -- ---------------------------- BEGIN; INSERT INTO `account` VALUES (1, 1, 1, 1, 'aaaa'); INSERT INTO `account` VALUES (2, 2, 2, 2, 'bbbb'); INSERT INTO `account` VALUES (3, 3, 2, 2, 'bbbb'); COMMIT; -- ---------------------------- -- Table structure for user -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `user_id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `sex` int(11) NOT NULL, `job` int(11) NOT NULL, PRIMARY KEY (`user_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of user -- ---------------------------- BEGIN; INSERT INTO `user` VALUES (1, 'xxj1', 1, 1); INSERT INTO `user` VALUES (2, 'xxj2', 2, 2); INSERT INTO `user` VALUES (3, 'xxj3', 3, 3); COMMIT; SET FOREIGN_KEY_CHECKS = 1;