I want to save date & time & time zone of user when he signup.
I have a 'signup_date' column in account table that its type in Java is OffsetDateTime and in liquibase is Datetime and in PostgreSQL is timestamp with time zone.
In pgadmin, I wrote an insert query with '2019-08-16T20:42:00+03:30' but in PostgreSQL it saves as '2019-08-16 17:12:00+00' and when I get it through api it returns '2019-08-16T21:42:00+04:30'
Why does this happen?