-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathsys_user.sql
More file actions
30 lines (24 loc) · 786 Bytes
/
sys_user.sql
File metadata and controls
30 lines (24 loc) · 786 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
/*
Navicat MySQL Data Transfer
Source Server : local
Source Server Version : 50727
Source Host : localhost:3306
Source Database : demo
Target Server Type : MYSQL
Target Server Version : 50727
File Encoding : 65001
Date: 2020-01-06 23:05:44
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for sys_user
-- ----------------------------
DROP TABLE IF EXISTS `sys_user`;
CREATE TABLE `sys_user` (
`id` int(11) DEFAULT NULL COMMENT '主键',
`name` varchar(255) DEFAULT NULL COMMENT '姓名'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户信息';
-- ----------------------------
-- Records of sys_user
-- ----------------------------
INSERT INTO `sys_user` VALUES ('1', '2');