/* Navicat Premium Data Transfer Source Server : docker Source Server Type : MySQL Source Server Version : 80020 Source Host : localhost:3307 Source Schema : game Target Server Type : MySQL Target Server Version : 80020 File Encoding : 65001 Date: 01/12/2020 16:26:05 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for Account -- isSet --客户端是否设置过数据 -- ---------------------------- DROP TABLE IF EXISTS `Account`; CREATE TABLE `Account` ( `playerId` bigint NOT NULL AUTO_INCREMENT, `uid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `nickName` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `passWd` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL, `createDate` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updateDate` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `lastLoginTime` bigint NOT NULL DEFAULT '0', PRIMARY KEY (`playerId`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC;