We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb8b5cb commit 87cf5b8Copy full SHA for 87cf5b8
springboot-sql2dictionary/src/main/resources/sql/springBoot.sql
@@ -0,0 +1,21 @@
1
+/*
2
+SQLyog Ultimate v12.09 (64 bit)
3
+MySQL - 5.5.27 : Database - springboot
4
+*********************************************************************
5
+*/
6
+CREATE DATABASE `springboot`;
7
+
8
+USE `springboot`;
9
10
+/*Table structure for table `t_user` */
11
12
+DROP TABLE IF EXISTS `t_user`;
13
14
+CREATE TABLE `t_user` (
15
+ `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id',
16
+ `name` varchar(10) DEFAULT NULL COMMENT '姓名',
17
+ `age` int(2) DEFAULT NULL COMMENT '年龄',
18
+ PRIMARY KEY (`id`)
19
+) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
20
21
0 commit comments