在有sequelize作为ORM的nodeJS项目中,我有一个模型“ Currency”,它是一个只有一列(名称)的表。我已经为其创建了一个种子器,但是当我运行种子器时,它找不到该列的正确名称。该模型是:
./app/models/Currency.js
:
'use strict';
module.exports = (sequelize, DataTypes) => {
const Currency = sequelize.define('Currency', {
name: {
type: DataTypes.STRING,
allowNull: false,
primaryKey: true
}
},
{
freezeTableName: true,
tableName: 'currency',
timestamps: false,
id: false
}
);
Currency.removeAttribute('id')
return Currency
}
种子文件./database/seeders/20190705045938-SeedCurrency.js
:
'use strict';
module.exports = {
up: function(queryInterface) {
return queryInterface.bulkUpdate('currency', [
{ name: 'USD' },
{ name: 'BRL' },
{ name: 'EUR' },
{ name: 'BTC' }
], {});
},
down: function(queryInterface) {
return queryInterface.bulkDelete('currency', null, {});
}
};
我运行node_modules/.bin/sequelize db:seed:all
时失败,并显示以下错误:
== 20190705045938-SeedCurrency:正在迁移=======
错误:关系“ currency”的列“ 0”不存在
配置此关系时我想念什么?预先感谢。
答案 0 :(得分:1)
使用queryInterface.bulkInsert
代替bulkUpdate
。