该表由Sequelize创建。然后,我使用Workbench从.sql文件将数据导入到该表中。
现在,当我尝试创建条目时,Sequelize会引发“字段列表中的未知列'id'”。
'id'在表中定义为主键:
我可以更改表格以使其与Sequelize一起使用吗?
型号示例:
var Record = sequelize.define("Record", {
secondaryID: {
type: DataTypes.UUID,
allowNull: false,
unique: true,
autoIncrement: false
},
description: DataTypes.STRING(1024),
title: DataTypes.STRING,
documentType: DataTypes.STRING,
/*About 80 variables of the STRING type*/
});