From 5ace0474b1c13e349530374a85bc7566c2d0f47a Mon Sep 17 00:00:00 2001 From: wonseok Date: Tue, 7 Jan 2025 21:01:50 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20mannerEntity=20id?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/toyProject7/karrot/manner/persistence/MannerEntity.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/toyProject7/karrot/manner/persistence/MannerEntity.kt b/src/main/kotlin/com/toyProject7/karrot/manner/persistence/MannerEntity.kt index c8e8e93..84f3e63 100644 --- a/src/main/kotlin/com/toyProject7/karrot/manner/persistence/MannerEntity.kt +++ b/src/main/kotlin/com/toyProject7/karrot/manner/persistence/MannerEntity.kt @@ -12,11 +12,11 @@ import jakarta.persistence.Id import jakarta.persistence.JoinColumn import jakarta.persistence.ManyToOne -@Entity +@Entity(name = "manners") class MannerEntity( @Id @GeneratedValue(strategy = GenerationType.UUID) - val id: Long? = null, + val id: String? = null, @ManyToOne @JoinColumn(name = "user_id", nullable = false) val user: UserEntity,