Answers for "column not found: 1054 unknown column 'id' in 'field list' (sql: update `customers` set `id` = 2, `customers`.`updated_at` = 2022-04-25 08:49:50 where `customer_id` = 2)"

PHP
5

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 "column not found: 1054 unknown column 'id' in 'field list' (sql: update `customers` set `id` = 2, `customers`.`updated_at` = 2022-04-25 08:49:50 where `customer_id` = 2)"

Browse Popular Code Answers by Language