数据库更新如何触发唯一错误?

时间:2016-07-04 16:45:47

标签: sql node.js sequelize.js

我正在尝试更新数据库中的项目,如下所示:

attribute.update({value: value});

但是我收到了这个错误:

Unhandled rejection SequelizeUniqueConstraintError: Validation error

这是正在运行的sql:

UPDATE `userAttributes` 
   SET `userId`=1,
       `updatedAt`='2016-07-04 16:37:29.183 +00:00' 
WHERE `id` IN (1)

数据模型中没有属性是唯一的。这个错误意味着什么以及导致它的原因是什么?

0 个答案:

没有答案