You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Means that the server will receive a timestamp formatted as RFC3339. Such a timestamp looks like 2006-01-02T15:04:05Z07:00 (omitting the URL escaped chars), and the server will parse that into a *time.Time, which contains all timezone information.
However, as of this writing, the database does not store timezone information (see http://www.postgresql.org/docs/9.1/static/datatype-datetime.html), so for those querying it, it must be assumed that all times in the DB are in UTC (since we're also formatting times as RFC3339).
We should reconfigure the DB to store timestamps as UTC in order to preserve timezones.
We expect all timestamps to be represented in PDT. Ensure that this is so.
The text was updated successfully, but these errors were encountered: