在laravel中 deleted_at 字段默認查詢方式是 deleted_at is null ,而如今不少數據庫默認字段不能設置爲null,目前有一個解決方案,在model類中將deleted_at設置格式爲時間戳
在model里加上以下代碼:
//const DELETED_AT='deleted_at';
//set the date format as timestamp
protected $dateFormat='U';laravel
官方文檔:https://learnku.com/docs/lara...
關於null的討論 https://learnku.com/laravel/t...數據庫