panwenbin/yii2-activerecord-changelog

记录Yii2活动记录的变更

0.3.0 2017-08-20 08:45 UTC

This package is not auto-updated.

Last update: 2024-09-15 04:10:42 UTC


README

migration

php yii migrate --migrationPath=@panwenbin/yii2/activerecord/changelog/migrations

用法

在ActiveRecord模型上配置

    public function behaviors()
    {
        return [
            [
                'class' => ActiveRecordChangeLogBehavior::className(),
                'ignoreAttributes' => ['updated_at'],
            ],
        ];
    }

用于查看变更日志的模块,通过以下配置在路由 /ar/log 访问。

    'modules' => [
        'ar' => [
            'class' => 'panwenbin\yii2\activerecord\changelog\Module',
        ],
    ]