-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser_info.sql
More file actions
35 lines (29 loc) · 1.14 KB
/
user_info.sql
File metadata and controls
35 lines (29 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
Navicat Premium Data Transfer
Source Server : MySQLMain
Source Server Type : MySQL
Source Server Version : 80036
Source Host : localhost:3307
Source Schema : user_info
Target Server Type : MySQL
Target Server Version : 80036
File Encoding : 65001
Date: 04/07/2024 11:42:02
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for user_base_info
-- ----------------------------
DROP TABLE IF EXISTS `user_base_info`;
CREATE TABLE `user_base_info` (
`primary_key` int NOT NULL AUTO_INCREMENT,
`user_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`user_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
`score` int NOT NULL DEFAULT 0,
`highest_record` int NOT NULL DEFAULT 0,
`nums_of_plays` int NOT NULL DEFAULT 0,
`nums_of_wins` int NOT NULL DEFAULT 0,
PRIMARY KEY (`primary_key`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 27 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;