-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsurgingsample_user.sql
More file actions
34 lines (28 loc) · 1014 Bytes
/
surgingsample_user.sql
File metadata and controls
34 lines (28 loc) · 1014 Bytes
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
/*
Navicat Premium Data Transfer
Source Server : local
Source Server Type : MySQL
Source Server Version : 80015
Source Host : 127.0.0.1:3306
Source Schema : surgingsample_user
Target Server Type : MySQL
Target Server Version : 80015
File Encoding : 65001
Date: 30/08/2019 16:31:09
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
drop database if exists surgingsample_user;
create database surgingsample_user;
use surgingsample_user;
-- ----------------------------
-- Table structure for UserInfo
-- ----------------------------
DROP TABLE IF EXISTS `UserInfo`;
CREATE TABLE `UserInfo` (
`Id` bigint(20) NOT NULL AUTO_INCREMENT,
`Code` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
`Name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
PRIMARY KEY (`Id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;