42seoul/42seoul_

[Typeorm] UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tablePath' of undefined

mcdn 2022. 9. 20. 11:35
반응형

typeorm error

UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tablePath' of undefined

 

알고보니 ManyToMany()를 사용할 때는 @JoinTable() 데코레이터가 필요했다. 

 

 

출처 : 공식 문서 

@JoinTable() is required for @ManyToMany relations. You must put @JoinTable on one (owning) side of relation.

 

@ManyToMany 관계를 사용할 때는 @JoinTable()이 반드시 필요하다. 

한 쪽에 꼭 집어넣어야 한다. 

 

반응형