
Node.js/TypeORM
[TypeORM] 복합키 (다중컬럼 PK) 지정하기
🐳 문제계층형 데이터 구조를 저장하기 위해 Custom Closure Table을 구현하는데PK값이 없다는 아래와 같은 에러가 발생했다.MissingPrimaryColumnError: Entity "CategoryClosure" does not have a primary column. Primary column is required to have in all your entities. Use @PrimaryColumn decorator to add a primary column to your entity. 📋 Entity 코드작성한 Entity 코드는 아래와 같다.@Entity()@Unique(['ancestorId', 'descendantId'])export class CategoryClosure..