panwenbin / yii2-activerecord-changelog
Log Yii2 active record changes
Package info
github.com/panwenbin/yii2-activerecord-changelog
Type:yii2-extension
pkg:composer/panwenbin/yii2-activerecord-changelog
0.3.0
2017-08-20 08:45 UTC
Requires
- yiisoft/yii2: ^2.0
This package is not auto-updated.
Last update: 2026-03-01 11:20:22 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', ], ]