123456789101112131415161718192021222324252627282930313233343536 |
- /*
- Navicat Premium Data Transfer
- Source Server : yueyou_sdk
- Source Server Type : MySQL
- Source Server Version : 50736
- Source Host : 47.101.52.239:9198
- Source Schema : db_mp
- Target Server Type : MySQL
- Target Server Version : 50736
- File Encoding : 65001
- Date: 30/11/2021 16:02:29
- */
- SET NAMES utf8mb4;
- SET FOREIGN_KEY_CHECKS = 0;
- -- ----------------------------
- -- Table structure for h_mem_base
- -- ----------------------------
- DROP TABLE IF EXISTS `h_mem_base`;
- CREATE TABLE `h_mem_base` (
- `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'id',
- `base` int(11) NULL DEFAULT 0 COMMENT '账号规则t_ base*100000+id',
- PRIMARY KEY (`id`) USING BTREE,
- INDEX `base`(`base`) USING BTREE
- ) ENGINE = InnoDB AUTO_INCREMENT = 6438 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '玩家账号生成表' ROW_FORMAT = COMPACT;
- -- ----------------------------
- -- Records of h_mem_base
- -- ----------------------------
- INSERT INTO `h_mem_base` VALUES (6437, 652);
- SET FOREIGN_KEY_CHECKS = 1;
|