CURRENT_TIME does not return a DATETIME
https://dev.mysql.com/doc/refman/8.4/en/date-and-time-functions.html#function_curtime
What you are probably after is TIMESTAMP instead, something like this:
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
https://dev.mysql.com/doc/refman/8.4/en/date-and-time-functions.html#function_now