You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
문제 원인
spring.jpa.hibernate.ddl-auto
를 사용하여 DB Table을 만드는 상황@Enumerated(EnumType.STRING)
을 선언해줘도 MySQL에서enum
타입으로 컬럼 생성하는 문제 발생Member.java
MySQL - 회원 테이블 정보
문제 해결
Enum
을 varchar 형태로 바꾸어주지 않음.해결 방법
@Column
어노테이션에columnDefinition
을 통해 타입을 지정해주는 방식으로 변경spring.jpa.hibernate.ddl-auto
방식을 사용하지 않고 직접 테이블 생성위의 두 가지 방식 중 1번 방식을 적용하여 변경
수정 후 테이블 정보
Beta Was this translation helpful? Give feedback.
All reactions