본문 바로가기
에러/postgresql

[Postgresql] Attribute '' cannot be parsed: Cannot read property 'dataType' of undefined 에러

by PEKAH 2021. 3. 23.

nodejs + postgresql 조합을 사용하기 위해 sequelize로 데이터베이스 생성을 시도하다 에러가 발생했다.

 

npx sequelize model:generate --name User --attributes user_id:string, user_pw:string

 

다음의 명령을 실행해 발생한 에러였고, user_id:string, user_pw:string 사이의 공백으로 인한 문제였다.

테이블 부분의 공백을 제거하면 에러없이 생성이 된다.

npx sequelize model:generate --name User --attributes user_id:string,user_pw:string

댓글