-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathchat.sql
More file actions
32 lines (26 loc) · 838 Bytes
/
Copy pathchat.sql
File metadata and controls
32 lines (26 loc) · 838 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
/*
Navicat MySQL Data Transfer
Source Server : local
Source Server Version : 50546
Source Host : localhost:3306
Source Database : chat
Target Server Type : MYSQL
Target Server Version : 50546
File Encoding : 65001
Date: 2015-12-09 19:36:06
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `student`
-- ----------------------------
DROP TABLE IF EXISTS `student`;
CREATE TABLE `student` (
`stuID` int(11) NOT NULL AUTO_INCREMENT,
`stuName` varchar(255) DEFAULT NULL,
`stuPassword` varchar(255) DEFAULT NULL,
PRIMARY KEY (`stuID`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of student
-- ----------------------------
INSERT INTO `student` VALUES ('2', 'admin', '123');