Answers for "illuminate\database\queryexception with message 'sqlstate[42s22]: column not found: 1054"

SQL
0

IlluminateDatabaseQueryException: 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 "illuminate\database\queryexception with message 'sqlstate[42s22]: column not found: 1054"

Code answers related to "SQL"

Browse Popular Code Answers by Language