Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- MySQL
- caddy
- android
- 안드로이드
- php
- java
- 프래그먼트
- NGINX
- 컴퓨터과학총론
- server
- javascript
- centOS7
- 자바
- 구글
- 개발자
- 한글
- 해석
- ubuntu
- it
- H2O
- Portfolio
- 번역
- C
- 개발
- mariadb
- unity
- C lanuage
- error
- techEmpower
- kakao
Archives
- Today
- Total
개발모음집
Error: Include unexpected. Element has to be either a Model, an Association or an object 본문
Server/node.js
Error: Include unexpected. Element has to be either a Model, an Association or an object
void 2019. 12. 2. 10:00Error: Include unexpected. Element has to be either a Model, an Association or an object 에러가 발생했다.
에러를 찾아보니 sequelize difine할 때,
defaultScope: {
where: {
active: true
}
}
를 같이 써쭤야한다고 한다.
module.exports = (sequelize, DataTypes) => {
const User = sequelize.define('User', {
email: {
type: DataTypes.STRING(40),
allowNull: false,
unique: true,
},
nickname: {
type: DataTypes.STRING(20),
allowNull: false,
},
password: {
type: DataTypes.STRING(100),
allowNull: false,
},
}, {
charset: 'utf8',
collate: 'utf8_general_ci',
defaultScope: {
where: {
email: true // where절을 허용할 컬럼명을 써준다.
}
}
});
User.associate = (db) => {
};
return User;
};
where절 제대로 안쓰면 아래와 같이 컬럼이 없다고 나온다.
SequelizeDatabaseError: Unknown column 'User.active' in 'where clause'