Files

22 lines
532 B
PHP
Raw Permalink Normal View History

2024-09-19 11:32:39 +08:00
<?php
2024-12-19 19:20:27 +08:00
namespace common\models\oldDb;
2024-09-19 11:32:39 +08:00
use yii\behaviors\TimestampBehavior;
use yii\db\ActiveRecord;
2024-12-19 19:20:27 +08:00
class BaseConfig extends \common\modelsgii\oldDb\BaseConfig
2024-09-19 11:32:39 +08:00
{
public function behaviors()
{
return [
[
'class' => TimestampBehavior::class,
'attributes' => [
ActiveRecord::EVENT_BEFORE_INSERT => ['created_at', 'updated_at'],
ActiveRecord::EVENT_BEFORE_UPDATE => ['updated_at'],
],
],
];
}
}