在一个模块中,我有字段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')
插入命令不包括时间的原因是什么
感谢