250x250
Notice
Recent Posts
Recent Comments
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- certbot
- MYSQL
- atlas
- findByIdAndDelete
- Find
- double quote
- jsonwebtoken
- AWS
- wil
- Express
- TypeScript
- Node.js
- await
- Nodejs
- TailwindCSS
- css
- clipBehavior
- moment
- til
- single quote
- async
- mongoose
- JavaScript
- sequelize
- nginx
- mongodb
- flutter
- https
- EC2
- RDS
Link
Archives
반응형
목록Migration (1)
기억 휘발 방지소
Sequelize에서 현재 마이그레이션 되어 있는 DB 테이블 내에 새로운 컬럼 추가하기
이미 생성된 테이블의 컬럼을 나중에 변경/추가/삭제 할 때 models 안에 있는 파일을 수정한다고 DB에 반영되지 않는다. migration을 통해 변경해야 실제 DB에 반영된다. 그리고 migration 파일을 생성해두면 나중에 롤백할 수도 있다. ✔️ 추가/변경/삭제 내용 작성하기 npx sequelize migration:create --name add-column migrations 폴더 안에 add-column 이라는 파일이 생성된다. 파일을 열어보면 내용은 다음과 같다. "use strict"; module.exports = { async up(queryInterface, Sequelize) { /** * Add altering commands here. * * Example: * await..
Database/ORM
2022. 2. 17. 16:51
반응형