From 21088682762e96a35317fe4b73ca314599229b11 Mon Sep 17 00:00:00 2001 From: sunwoong Date: Thu, 11 Jan 2024 06:14:10 +0900 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=ED=9A=8C=EC=9B=90=20=EC=97=94?= =?UTF-8?q?=ED=8B=B0=ED=8B=B0=20result=20=ED=83=80=EC=9E=85=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=20(#65)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- doorip-domain/src/main/java/org/doorip/user/domain/User.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doorip-domain/src/main/java/org/doorip/user/domain/User.java b/doorip-domain/src/main/java/org/doorip/user/domain/User.java index f074af8..057b42e 100644 --- a/doorip-domain/src/main/java/org/doorip/user/domain/User.java +++ b/doorip-domain/src/main/java/org/doorip/user/domain/User.java @@ -23,7 +23,7 @@ public class User extends BaseTimeEntity { private String name; @Column(nullable = false) private String intro; - private Integer result; + private String result; @Column(nullable = false) private String platformId; @Column(nullable = false) From 690711ce99477b46b6d1e9c16beff1f2139c1967 Mon Sep 17 00:00:00 2001 From: sunwoong Date: Thu, 11 Jan 2024 06:14:28 +0900 Subject: [PATCH 2/3] =?UTF-8?q?fix:=20=ED=9A=8C=EC=9B=90=20=EC=97=94?= =?UTF-8?q?=ED=8B=B0=ED=8B=B0=20result=20=ED=83=80=EC=9E=85=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=20=EA=B2=B0=EA=B3=BC=20=EB=B0=98=EC=98=81=20(#65)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/org/doorip/user/dto/response/ProfileGetResponse.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doorip-api/src/main/java/org/doorip/user/dto/response/ProfileGetResponse.java b/doorip-api/src/main/java/org/doorip/user/dto/response/ProfileGetResponse.java index 2e787bc..ff2d39f 100644 --- a/doorip-api/src/main/java/org/doorip/user/dto/response/ProfileGetResponse.java +++ b/doorip-api/src/main/java/org/doorip/user/dto/response/ProfileGetResponse.java @@ -5,7 +5,7 @@ public record ProfileGetResponse( String name, String intro, - int result + String result ) { public static ProfileGetResponse of(User user) { From 522833bb0b923b54051bbd9b7f3f1992dc37c4f6 Mon Sep 17 00:00:00 2001 From: sunwoong Date: Thu, 11 Jan 2024 06:15:03 +0900 Subject: [PATCH 3/3] =?UTF-8?q?chore:=20flyway=20V4=20ddl=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD=20=EC=82=AC=ED=95=AD=20=EC=A0=81=EC=9A=A9=20(#65)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- doorip-api/src/main/resources/db/migration/V4__ddl.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 doorip-api/src/main/resources/db/migration/V4__ddl.sql diff --git a/doorip-api/src/main/resources/db/migration/V4__ddl.sql b/doorip-api/src/main/resources/db/migration/V4__ddl.sql new file mode 100644 index 0000000..e99efca --- /dev/null +++ b/doorip-api/src/main/resources/db/migration/V4__ddl.sql @@ -0,0 +1,2 @@ +alter table users drop column result; +alter table users add column result varchar(255); \ No newline at end of file