chore: BypassApiConfig 인덱스 추가 (domain_name)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
부모
ce27c60985
커밋
dbbf8628c5
@ -14,9 +14,14 @@ import java.util.List;
|
|||||||
* JPA를 사용하므로 @PrePersist, @PreUpdate로 감사 필드 자동 설정
|
* JPA를 사용하므로 @PrePersist, @PreUpdate로 감사 필드 자동 설정
|
||||||
*/
|
*/
|
||||||
@Entity
|
@Entity
|
||||||
@Table(name = "bypass_api_config", uniqueConstraints = {
|
@Table(name = "bypass_api_config",
|
||||||
@UniqueConstraint(columnNames = {"domain_name", "endpoint_name"})
|
uniqueConstraints = {
|
||||||
})
|
@UniqueConstraint(name = "uk_bypass_config_domain_endpoint", columnNames = {"domain_name", "endpoint_name"})
|
||||||
|
},
|
||||||
|
indexes = {
|
||||||
|
@Index(name = "idx_bypass_config_domain_name", columnList = "domain_name")
|
||||||
|
}
|
||||||
|
)
|
||||||
@Getter
|
@Getter
|
||||||
@Setter
|
@Setter
|
||||||
@Builder
|
@Builder
|
||||||
|
|||||||
불러오는 중...
Reference in New Issue
Block a user