Skip to content

Commit

Permalink
fix: Enum컬럼 타입 명시
Browse files Browse the repository at this point in the history
  • Loading branch information
CChuYong committed May 29, 2024
1 parent d3bcf5a commit cdb66e6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class MemberGenerationEntity private constructor(
val groupId: Int?,

@Enumerated(EnumType.STRING)
@Column(name = "role", nullable = false)
@Column(name = "role", nullable = false, columnDefinition = "VARCHAR(255)")
val role: MemberRole,

@Enumerated(EnumType.STRING)
Expand Down

0 comments on commit cdb66e6

Please sign in to comment.