TableMakeFields.php
573 字节
<?php
namespace app\admin\model;
use think\Model;
class TableMakeFields extends Model {
// 表名
protected $name = 'tablemake_fields';
// 开启自动写入时间戳字段
protected $autoWriteTimestamp = 'int';
// 定义时间戳字段名
protected $createTime = 'createtime';
protected $updateTime = 'updatetime';
protected static function _initialize() {
parent::_initialize();
}
protected static function init()
{
self::afterInsert(function ($row) {
$row->save(['weigh' => $row['id']]);
});
}
}