panwenbin / yii2-activerecord-changelog
Log Yii2 active record changes
Installs: 105
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- yiisoft/yii2: ^2.0
This package is not auto-updated.
Last update: 2024-11-10 04:48:17 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', ], ]