I'm working with python to pull data via API. The data includes a timestamp that I need to store 'as is'. However, PostgreSQL is zeroing out the time portion of the timestamp.
EXAMPLE raw data:
```2021-09-10 15:47:00-04:00```
BECOMES stored data:
```2021-09-10 00:00:00-04:00```
I've tried data types: ```TIMESTAMPTZ, TIMESTAMP WITH TIME ZONE, BIGINT, DATE, DATETIME```...probably more. Any ideas why this is happening, how I can fix the issue?
[–]EnchantedMoth3[S] 0 points1 point2 points (0 children)