What are the preferred MySQL column data types for CodeIgniter 4's created_at, updated_at, and deleted_at field definitions?
I want to use CodeIgniter 4's Models' ability to automatically set the created_at, updated_at, and deleted_at fields in database tables. For that, should I set those fields as TIMESTAMP in MySQL or DATETIME? If I set them as TIMESTAMP, I…