企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
>[danger] 开启自动时间戳 ~~~ // 自动识别: true (常用) // 指定字段类型: int timestamp datetime date protected $autoWriteTimestamp = true; // 关闭自动时间戳 protected $autoWriteTimestamp = false; ~~~ >[danger] 自定义自动时间戳字段名 ~~~ // 添加时间字段名 protected $createTime = 'create_at'; // 更新时间字段名 protected $updateTime = 'update_at'; ~~~ >[danger] 单独关闭某个字段 ~~~ // 关闭添加时间字段的自动写入 protected $createTime = false; // 关闭更新时间字段的自动写入 protected $updateTime = false; ~~~