标签:pre opera 方式 数据库配置 update amp prot 字段名 数据库
系统支持自动写入创建和更新的时间戳字段,有两种方式配置支持。
第一种方式,是在数据库配置文件中添加全局设置:
// 开启自动写入时间戳字段
‘auto_timestamp‘ => true,
第二种是直接在单独的模型类里面设置:
protected $autoWriteTimestamp = true;
字段名默认创建时间字段为create_time
,更新时间字段为update_time
$user = new User();
$user->name = ‘user‘;
$user->save();
echo $user->create_time;
echo $user->update_time;
支持的字段类型包括timestamp/datetime/int
标签:pre opera 方式 数据库配置 update amp prot 字段名 数据库
原文地址:https://www.cnblogs.com/CWJDD/p/11459172.html