Answers for "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'updated_at' in 'field list'"

PHP
3

Column not found: 1054 Unknown column 'updated_at'

// turn off both 
public $timestamps = false;

// turn off only updated_at
const UPDATED_AT = false;
Posted by: Guest on December-22-2020
2

Unknown column '.updated_at'

In the model, write the below code;
public $timestamps = false;

Explanation : By default laravel will expect created_at & updated_at column 
in your table. By making it to false it will override the default setting.
Posted by: Guest on July-14-2020
0

Illuminate\Database\QueryException: SQLSTATE[42S22]: Column not found: 1054 Unknown column 'updated_at' in 'field list'

class ABC extends Model {
//to turn of just one field
const UPDATED_AT = null;
//to turn off timestamp completely
public $timestamps = false;
Posted by: Guest on June-22-2021

Code answers related to "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'updated_at' in 'field list'"

Browse Popular Code Answers by Language