sequelize1 [Postgresql] Attribute '' cannot be parsed: Cannot read property 'dataType' of undefined 에러 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 2021. 3. 23. 이전 1 다음