I\'m having an issue selecting dates properly from Postgres - they are being stored in UTC, but not converting with the Date() function properly.
Converting the tim
I know this is an old one but You may want to consider using AT TIME ZONE "US/Pacific" when casting to avoid any PST/PDT issues. So
SELECT starts_at::TIMESTAMPTZ AT TIME ZONE "US/Pacific" FROM schedules WHERE ID = '40';