From ec0b8927572bf47b7ea8c0b9808561d4848c05e6 Mon Sep 17 00:00:00 2001 From: doyeon Date: Mon, 27 Oct 2025 13:22:25 +0900 Subject: [PATCH] =?UTF-8?q?channel=20=ED=95=84=EB=93=9C=20=EC=8A=A4?= =?UTF-8?q?=ED=82=A4=EB=A7=88=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - DDL_AUTO를 none으로 변경하여 Hibernate 자동 스키마 변경 중지 - channel 필드를 nullable = true로 임시 변경 - 기존 데이터 마이그레이션 후 nullable = false로 변경 예정 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .run/ParticipationServiceApplication.run.xml | 2 +- .../kt/event/participation/domain/participant/Participant.java | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.run/ParticipationServiceApplication.run.xml b/.run/ParticipationServiceApplication.run.xml index 088393b..a323100 100644 --- a/.run/ParticipationServiceApplication.run.xml +++ b/.run/ParticipationServiceApplication.run.xml @@ -14,7 +14,7 @@ - + diff --git a/participation-service/src/main/java/com/kt/event/participation/domain/participant/Participant.java b/participation-service/src/main/java/com/kt/event/participation/domain/participant/Participant.java index 4d08673..0aac1f8 100644 --- a/participation-service/src/main/java/com/kt/event/participation/domain/participant/Participant.java +++ b/participation-service/src/main/java/com/kt/event/participation/domain/participant/Participant.java @@ -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; /**