How We Coding

'JS > Node.js' 카테고리의 다른 글

[Lambda] node-gyp  (0) 2019.05.16
[정리] 아하 REST API 서버 개발 #3  (0) 2019.03.31
[Node.js] How to store emoji in MySQL  (0) 2019.02.03

sequelize issue

DB2019. 3. 28. 13:05

ERROR: Migration create-user.js – Not able to start development server

 

> sequelize db:migrate

 

...

 

== 20190328034059-create-users: migrating =======
ERROR: Migration 20190328034059-create-users.js (or wrapper) didn't return a promise

 

Sol)

> npm install -g vapid-cli

> sequelize db:migrate

 

해결되었다.

 

Reference : https://forums.vapid.com/t/error-migration-create-user-js-not-able-to-start-development-server/139/3

[JS] import / export

JS/JS(ES6+)2019. 2. 11. 00:33

'JS > JS(ES6+)' 카테고리의 다른 글

[JS] 느낌표로 시작하는 함수  (0) 2019.02.11
[JS] require(), module.exports, exports  (0) 2019.01.25
[JS] Symbol (ES6)  (0) 2019.01.20