panwenbin/yii2-activerecord-changelog

Log Yii2 active record changes

0.3.0 2017-08-20 08:45 UTC

This package is not auto-updated.

Last update: 2024-05-12 02:10:19 UTC


README

migration

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

Usage

Config on ActiveRecord Model

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

Module for view changelogs, access at route /ar/log as the following config.

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