Skip to content

Commit

Permalink
修复测试
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyv404 committed Jul 19, 2024
1 parent 93989d5 commit 13173a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/resources/init-data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ create table "MinecraftServer"
"id" int8 not null,
"host" varchar(255),
"port" int8,
"status" int8,
"status" varchar(9),
"name" varchar(255),
"playerNum" int8,
"playerMaxNum" int8,
Expand Down Expand Up @@ -159,4 +159,4 @@ values (1, 2, '2006-04-16 06:58:39.810', 'Increase'),
(1, 2, '2006-04-16 06:58:39.810', 'Increase');

INSERT INTO "MinecraftServer"("id", "host", "port", "status", "name", "playerNum", "playerMaxNum", "hilde", "mock")
values (1, 'test', 1, 1, 'mcg', 10, 80, false, false);
values (1, 'test', 1, 'Online', 'mcg', 10, 80, false, false);

0 comments on commit 13173a4

Please sign in to comment.