Skip to content

Commit

Permalink
修复测试
Browse files Browse the repository at this point in the history
  • Loading branch information
Yurunsoft committed Oct 29, 2023
1 parent d21ec03 commit 889a818
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/pgsql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,19 @@ CACHE 1
)
;

-- ----------------------------
-- Records of tb_tree
-- ----------------------------
INSERT INTO "public"."tb_tree" VALUES (1, 0, 'a');
INSERT INTO "public"."tb_tree" VALUES (2, 0, 'b');
INSERT INTO "public"."tb_tree" VALUES (3, 0, 'c');
INSERT INTO "public"."tb_tree" VALUES (4, 1, 'a-1');
INSERT INTO "public"."tb_tree" VALUES (5, 1, 'a-2');
INSERT INTO "public"."tb_tree" VALUES (6, 4, 'a-1-1');
INSERT INTO "public"."tb_tree" VALUES (7, 4, 'a-1-2');
INSERT INTO "public"."tb_tree" VALUES (8, 2, 'b-1');
INSERT INTO "public"."tb_tree" VALUES (9, 2, 'b-2');

-- ----------------------------
-- Table structure for tb_test_soft_delete
-- ----------------------------
Expand Down

0 comments on commit 889a818

Please sign in to comment.