Skip to content

Commit

Permalink
๐Ÿ› Fix mannerEntity id
Browse files Browse the repository at this point in the history
  • Loading branch information
wonseok committed Jan 7, 2025
1 parent 2e77d1b commit 5ace047
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5ace047

Please sign in to comment.