Skip to content

Commit d5f1ade

Browse files
committed
druid_spring_config项目sql
1 parent 9be436e commit d5f1ade

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/*
2+
Navicat MySQL Data Transfer
3+
4+
Source Server : uifuture
5+
Source Server Version : 50714
6+
Source Host : localhost:3306
7+
Source Database : druid_spring_config
8+
9+
Target Server Type : MYSQL
10+
Target Server Version : 50714
11+
File Encoding : 65001
12+
13+
Date: 2018-02-06 23:19:42
14+
*/
15+
16+
SET FOREIGN_KEY_CHECKS=0;
17+
18+
-- ----------------------------
19+
-- Table structure for user
20+
-- ----------------------------
21+
DROP TABLE IF EXISTS `user`;
22+
CREATE TABLE `user` (
23+
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
24+
`name` varchar(64) DEFAULT NULL,
25+
PRIMARY KEY (`id`)
26+
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;

0 commit comments

Comments
 (0)