Answers for "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'name' in 'field list' (SQL: update `members` set `name` = ?, `members`.`updated_at` = 2021-04-16 11:48:42 where `id` = 79)"

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

Code answers related to "SQLSTATE[42S22]: Column not found: 1054 Unknown column 'name' in 'field list' (SQL: update `members` set `name` = ?, `members`.`updated_at` = 2021-04-16 11:48:42 where `id` = 79)"

Browse Popular Code Answers by Language