Date-time type displaying as Timestamp

Wappler Version : 3.20
Operating System : OSX 10.15

Expected behavior

When I choose Datetime option it should display as that not another type.

Actual behavior

When I save it appears to convert into timestamp. It also checks the ‘add timezone’ option everytime even when I deselect it.


When I save an entry with unix timestamp it tells me the field is datetime.
image

Now saving as datetime it works fine, so just something cosmetic but I think it stops me from using a default value as date time type.
image

Viewing the data after fetch is does not show me the time.

How to reproduce

Database postgresql with node.js server.

A datetime field in postgresql is called timestamp, so they are the same. The use timezone is also a specific option for postgresql databases to store the datetime with timezone information.

The timestamp in a database is not a unix timestamp, the TIMESTAMP expression in server connect returns a unix timestamp which is a numeric value. The timestamp in the database requires a datetime string.