-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnodesample.sql
32 lines (26 loc) · 919 Bytes
/
nodesample.sql
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
/*
Navicat MySQL Data Transfer
Source Server : mysql-home
Source Server Version : 50712
Source Host : localhost:3306
Source Database : nodesample
Target Server Type : MYSQL
Target Server Version : 50712
File Encoding : 65001
Date: 2017-02-19 22:59:00
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for userinfo
-- ----------------------------
DROP TABLE IF EXISTS `userinfo`;
CREATE TABLE `userinfo` (
`Id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
`UserName` varchar(64) NOT NULL COMMENT '用户名',
`UserPass` varchar(64) NOT NULL COMMENT '用户密码',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='用户信息表';
-- ----------------------------
-- Records of userinfo
-- ----------------------------
INSERT INTO `userinfo` VALUES ('1', 'zzl81cn', '81dc9bdb52d04dc20036dbd8313ed055');