Answers for "sqlstate[42s22]: column not found: 1054 unknown column 'posts.updated_at' in 'field list' (sql: update `posts` set `title` = post first, `body` = this is post one, `posts`.`updated_at` = 2021-07-27 06:26:27 where `id` = 8)"

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 "sqlstate[42s22]: column not found: 1054 unknown column 'posts.updated_at' in 'field list' (sql: update `posts` set `title` = post first, `body` = this is post one, `posts`.`updated_at` = 2021-07-27 06:26:27 where `id` = 8)"

Code answers related to "SQL"

Browse Popular Code Answers by Language