Skip to content

Commit 73a1dff

Browse files
committed
hotfix: infra - bookIsbn13 컬럼의 unique 제약 조건 제거
- 여러 사용자는 동일한 책을 등록을 할 수 있다.
1 parent 5065fcf commit 73a1dff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

infra/src/main/kotlin/org/yapp/infra/userbook/entity/UserBookEntity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class UserBookEntity(
3434
@JdbcTypeCode(Types.VARCHAR)
3535
val bookId: UUID,
3636

37-
@Column(name = "book_isbn13", nullable = false, unique = true)
37+
@Column(name = "book_isbn13", nullable = false)
3838
val bookIsbn13: String,
3939

4040
coverImageUrl: String,

0 commit comments

Comments
 (0)