我已经按照博客文章在 yii 中实现软删除行为并且效果很好。
这是一些片段:
class <name of model> extends CActiveRecord {
public function behaviors {
return array(
'SoftDeleteBehavior' => array(
'class' => 'application.components.behaviors.SoftDeleteBehavior',
'deleteAttribute' => 'deleted_date', // optional, default is 'deleted_time'
'timestampExpression' => 'date("Y-m-d H:i:s");',
),
);
}
}
如何deleteAttribute
使用加入表更新多个SoftDeleteBehavior
?