恢复软删除的实例

如果你使用 paranoid:true 软删除了模型的实例,之后想要撤消删除,请使用 restore 方法:

  1. Task.create({ title: 'a task' }).then(task => {
  2. // 进行软删除...
  3. return task.destroy();
  4. }).then((task) => {
  5. // 恢复软删除...
  6. return task.restore();
  7. })