I recently discovered, that the columns created_at and updated_at created by the timestamps()
function use the TIMESTAMP type.
I know that there are many similarities, but the DATETIME type has a much higher range beyond the year 2038. So why does Laravel not bother to use the DATETIME type for these default columns?
Would there be a workaround to just create these columns manually while keeping the functionality that Laravel automatically updates the columns?