participation 실행프로파일 수정
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
+2
-2
@@ -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}
|
||||
|
||||
# 서버 설정
|
||||
|
||||
Reference in New Issue
Block a user