h_mem_base.sql 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : yueyou_sdk
  4. Source Server Type : MySQL
  5. Source Server Version : 50736
  6. Source Host : 47.101.52.239:9198
  7. Source Schema : db_mp
  8. Target Server Type : MySQL
  9. Target Server Version : 50736
  10. File Encoding : 65001
  11. Date: 30/11/2021 16:02:29
  12. */
  13. SET NAMES utf8mb4;
  14. SET FOREIGN_KEY_CHECKS = 0;
  15. -- ----------------------------
  16. -- Table structure for h_mem_base
  17. -- ----------------------------
  18. DROP TABLE IF EXISTS `h_mem_base`;
  19. CREATE TABLE `h_mem_base` (
  20. `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'id',
  21. `base` int(11) NULL DEFAULT 0 COMMENT '账号规则t_ base*100000+id',
  22. PRIMARY KEY (`id`) USING BTREE,
  23. INDEX `base`(`base`) USING BTREE
  24. ) ENGINE = InnoDB AUTO_INCREMENT = 6438 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '玩家账号生成表' ROW_FORMAT = COMPACT;
  25. -- ----------------------------
  26. -- Records of h_mem_base
  27. -- ----------------------------
  28. INSERT INTO `h_mem_base` VALUES (6437, 652);
  29. SET FOREIGN_KEY_CHECKS = 1;