일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- kotest
- docker
- 웹해킹
- 포너블
- hackctf
- webhacking.kr
- 스프링 배치
- gcp
- cloud run
- pwnable.xyz
- 회고
- 사이버보안
- sequelize
- node.js
- Python
- Batch
- 보안
- gcp ci/cd
- nodejs
- 네트워크
- 프로그래머스
- 웹보안
- 백준
- 파이썬
- gcp cloud build
- 시스템 해킹
- 리버싱
- spring Batch
- programmers
- Baekjoon
Archives
목록ERROR: Cannot read property 'toString' of undefined (1)
uju's Tech
[Sequelize: 기록용]sequelize migration 시 ERROR: Cannot read property 'toString' of undefined 에러
sequelize 에서 데이터베이스 마이그레이션 시 ERROR: Cannot read property 'toString' of undefined 에러가 발생할 때가 있는데 changeColumn 등 을 이용할 때 해당 칼럼의 타입을 꼭 명시해주어야한다. type을 명시해주지 않고 마이그레이션하면 위와 같은 에러 발생한다. - 에러 상황 await queryInterface.changeColumn('users', 'serviceId', { allowNull: true, }, { transaction }); - 해결 await queryInterface.changeColumn('users', 'serviceId', { type: Sequelize.UUID, allowNull: true, }, { transa..
Node
2021. 7. 30. 21:23