participation 실행프로파일 수정

This commit is contained in:
Unknown
2025-10-28 10:21:38 +09:00
parent 397a23063d
commit 7a99dc95fe
6 changed files with 22 additions and 8 deletions
@@ -14,7 +14,7 @@ import lombok.*;
@Entity
@Table(name = "draw_logs",
indexes = {
@Index(name = "idx_event_id", columnList = "event_id")
@Index(name = "idx_draw_log_event_id", columnList = "event_id")
}
)
@Getter
@@ -13,8 +13,8 @@ import lombok.*;
@Entity
@Table(name = "participants",
indexes = {
@Index(name = "idx_event_id", columnList = "event_id"),
@Index(name = "idx_event_phone", columnList = "event_id, phone_number")
@Index(name = "idx_participant_event_id", columnList = "event_id"),
@Index(name = "idx_participant_event_phone", columnList = "event_id, phone_number")
},
uniqueConstraints = {
@UniqueConstraint(name = "uk_event_phone", columnNames = {"event_id", "phone_number"})
@@ -51,7 +51,7 @@ spring:
# JWT 설정
jwt:
secret: ${JWT_SECRET:kt-event-marketing-secret-key-for-development-only-change-in-production}
secret: ${JWT_SECRET:dev-jwt-secret-key-for-development-only}
expiration: ${JWT_EXPIRATION:86400000}
# 서버 설정