반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Android
- sort
- onsen-ui
- 프로세스 방지
- 동일 프로그램
- onsenui
- vuetifyjs
- naver storage
- Vue
- Electron
- bucket max-key
- MySQL
- vuejs
- c#
- electron-nuxt
- 동일 프로세스
- NUXT
- kotlin
- CSS
- sequelize
- bucket cors
- f035d
- v-text-field height
- nodejs
- naver storage bucket error
- JavaScript
- Vuetify
- v-select
- error
- xlsx
Archives
- Today
- Total
목록Migration (1)
앙큼한 개발기록
[sequelize] migration 정리
맨날 쓰고 맨날 까먹는 sequelize migration 정리 command sequelize migration:create --name 파일명 sequelize db:migrate sequelize db:migrate:undo addColumn module.exports = { up: async (queryInterface, Sequelize) => { await queryInterface.addColumn('테이블명', '변수명', { type: Sequelize.타입[BOOLEAN, STRING(4, 8, 16), TEXT, INTEGER], comment: "" ... }) } } removeColumn module.exports = { up: async (queryInterface, Seque..
개발/mysql
2022. 12. 12. 22:48