我正在尝试使用sequelize删除一个表的内容,我为该表创建了一个方便的模型,并且正在使用以下代码:
Table.truncate({transaction: t})
现在,我收到错误拒绝用户的DROP命令。为什么我只想删除表格内容时他为什么要删除表格?
有没有一种方法可以简单地删除行而不删除表?
答案 0 :(得分:0)
您也可以使用.sync
Table.sync({force : true}); // this will clear all the entries in your table.
OR
根据 DOC
,这是Model.destroy({ truncate: true })
的便捷方法