📌  相关文章
📜  Illuminate\Database\QueryException: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'updated_at' in 'field list' - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:35.001000             🧑  作者: Mango

代码示例1
class ABC extends Model {
//to turn of just one field
const UPDATED_AT = null;
//to turn off timestamp completely
public $timestamps = false;