From 24ebbdffe64876322aa35e1e6788a4b994f82642 Mon Sep 17 00:00:00 2001 From: Suomm <1474983351@qq.com> Date: Sat, 1 Jul 2023 22:55:00 +0800 Subject: [PATCH] =?UTF-8?q?update:=20=E6=9B=B4=E6=96=B0=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/user_test.sql | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/mybatis-flex-test/mybatis-flex-spring-boot-test/src/main/resources/user_test.sql b/mybatis-flex-test/mybatis-flex-spring-boot-test/src/main/resources/user_test.sql index b9f5d9de..1ad15533 100644 --- a/mybatis-flex-test/mybatis-flex-spring-boot-test/src/main/resources/user_test.sql +++ b/mybatis-flex-test/mybatis-flex-spring-boot-test/src/main/resources/user_test.sql @@ -228,4 +228,30 @@ VALUES (4, 4); INSERT INTO `tb_user_role` VALUES (5, 1); +-- ---------------------------- +-- Table structure for tb_outer +-- ---------------------------- +DROP TABLE IF EXISTS `tb_outer`; +CREATE TABLE `tb_outer` +( + `id` int NOT NULL AUTO_INCREMENT, + `name` varchar(255) CHARACTER SET utf8mb4 NULL DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB + CHARACTER SET = utf8mb4 + ROW_FORMAT = Dynamic; + +-- ---------------------------- +-- Table structure for tb_inner +-- ---------------------------- +DROP TABLE IF EXISTS `tb_inner`; +CREATE TABLE `tb_inner` +( + `id` int NOT NULL AUTO_INCREMENT, + `type` varchar(255) CHARACTER SET utf8mb4 NULL DEFAULT NULL, + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB + CHARACTER SET = utf8mb4 + ROW_FORMAT = Dynamic; + SET FOREIGN_KEY_CHECKS = 1;