Laravel在更新时返回“不正确的日期时间值”

时间:2018-05-31 12:25:17

标签: mysql laravel laravel-5

由于未知原因,我们的Laravel 5.5安装在日期以“2018-03-25”开头的所有更新中失败。

Invalid datetime format: 1292 Incorrect datetime value: '2018-03-25 03:00:00' for column 'done_date' at row 1 (SQL: update `hours` set `done_date` = 2018-03-25 03:00:00, `updated_at` = 2018-05-31 12:19:36 where `id` = 481)

所有其他日期都没问题。

这是表格语法:

CREATE TABLE hours ( id int(10) unsigned NOT NULL AUTO_INCREMENT, task_id int(11) DEFAULT NULL, project_id int(11) DEFAULT NULL, done_hours double(8,2) DEFAULT NULL, done_date timestamp NULL DEFAULT NULL, user_id int(11) DEFAULT NULL, info text COLLATE utf8mb4_unicode_ci, archived_at timestamp NULL DEFAULT NULL, created_at timestamp NULL DEFAULT NULL, updated_at timestamp NULL DEFAULT NULL, deleted_at timestamp NULL DEFAULT NULL, PRIMARY KEY ( ID为) ) ENGINE=InnoDB AUTO_INCREMENT=906 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

是什么导致这种情况?

0 个答案:

没有答案