mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 07:56:24 +00:00
Fix: PostgreSQL 예약어 'order' 컬럼명 이스케이프 처리
문제: - PostgreSQL에서 order는 예약어 - INSERT 구문에서 'syntax error at or near "order"' 오류 발생 해결: - @Column(name = "\"order\"") 로 수정 - SQL 생성 시 "order"로 이스케이프되어 예약어 충돌 방지 영향: - MinutesSectionEntity INSERT/UPDATE 정상 동작 - 회의 메모 저장 기능 복구 File: meeting/src/main/java/com/unicorn/hgzero/meeting/infra/gateway/entity/MinutesSectionEntity.java:40
This commit is contained in:
parent
258bef0891
commit
c00f1b03b9
@ -37,7 +37,7 @@ public class MinutesSectionEntity extends BaseTimeEntity {
|
|||||||
@Column(name = "content", columnDefinition = "TEXT")
|
@Column(name = "content", columnDefinition = "TEXT")
|
||||||
private String content;
|
private String content;
|
||||||
|
|
||||||
@Column(name = "order")
|
@Column(name = "\"order\"")
|
||||||
private Integer order;
|
private Integer order;
|
||||||
|
|
||||||
@Column(name = "verified")
|
@Column(name = "verified")
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user