@ManyToOne @OneToMany @ManyToMany @OneToOne 해당 데코레이션 사용 시 오류가 발생하였다. DataTypeNotSupportedError: Data type "EntityName" in "EntityName.key" is not supported by "mysql" database. 해당 데이코레이션과 함께 사용된 Colum 데코레이션에 타입을 지정해주어야한다. @Column({ type: "int" })
MissingDeleteDateColumnError: Entity "EntityName" does not have delete date columns. softDelete 시 해당 오류가 발생하였다. softDelete는 해당 컬럼을 완전 삭제하는 것이 아닌 컬럼에 삭제 시간을 입력하여 삭제된 것처럼 보이게 하는 기능이므로 해당 엔티티에 삭제 날짜 컬럼을 생성해주어야 한다. @DeleteDateColumn({ precision: null, comment: "삭제 날짜" }) deleted_at: Date | null;
ColumnTypeUndefinedError: Column type for EvaluationQuestionMapEntity#e_key is not defined and cannot be guessed. Make sure you have turned on an "emitDecoratorMetadata": true option in tsconfig.json. Also make sure you have imported "reflect-metadata" on top of the main entry file in your application (before any entity imported).If you are using JavaScript instead of TypeScript you must explici..
nestjs에서 resource를 생성하려고 $ nest g res 명령어를 치고 생성하던 중 Cannot read property 'properties' of undefined 라는 오류 메시지가 튀어나왔다 밑에 커맨드 메시지를 실행시키다가 실패한 것 같은데...? $ nest g res adult/base ? What transport layer do you use? REST API ? Would you like to generate CRUD entry points? Yes Error: Cannot read property 'properties' of undefined Failed to execute command: node @nestjs/schematics:resource --name=adult/b..
$ yarn install --silent Error: EACCES: permission denied, open '/home/bitnami/.config/yarn' at Object.openSync (fs.js:497:3) at readFileSync (fs.js:393:35) at /usr/share/yarn/lib/cli.js:101331:58 at Array.map () at parseRcPaths (/usr/share/yarn/lib/cli.js:101329:78) at Object.findRc (/usr/share/yarn/lib/cli.js:101343:10) at getRcConfigForCwd (/usr/share/yarn/lib/cli.js:56915:74) at /usr/share/ya..
"이 블로그의 모든 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."
- Total
- Today
- Yesterday