在一个模块中,我有字段 updated_at 和 created_at
但在特定模块中,updated_at 没有时间更新包括
我通过在创建表时添加 t.timestamps 添加此字段
在检查查询时,我注意到插入更新查询不包括时间
例如这是输出查询
INSERT INTO `logs` (`admin_id`, `admin_mail`, `admin_name`, `created_at`, `log_type_id`, `name`, `station_id`, `updated_at`) VALUES (3, 'xx@bb.com', 'xx@bbb.com', '13-10-16', 10, '+ abcdefghij...', 9096, '13-10-16')
插入命令不包括时间的原因是什么
谢谢