channel 필드 스키마 오류 수정
- DDL_AUTO를 none으로 변경하여 Hibernate 자동 스키마 변경 중지 - channel 필드를 nullable = true로 임시 변경 - 기존 데이터 마이그레이션 후 nullable = false로 변경 예정 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
+2
-1
@@ -66,8 +66,9 @@ public class Participant extends BaseTimeEntity {
|
||||
/**
|
||||
* 참여 채널
|
||||
* 기본값: SNS
|
||||
* TODO: 기존 데이터 마이그레이션 후 nullable = false로 변경
|
||||
*/
|
||||
@Column(name = "channel", length = 20, nullable = false)
|
||||
@Column(name = "channel", length = 20, nullable = true)
|
||||
private String channel;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user