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:
doyeon
2025-10-27 13:22:25 +09:00
parent 03bbe8b021
commit ec0b892757
2 changed files with 3 additions and 2 deletions
@@ -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;
/**