I have a DATETIME field named "event_timestamp"
in MySQL database that has the following value:
2014-07-23 12:31:00
When I query the database (I use SAILS, waterline ORM is used, specifically find() function), the result object shows the value shifted by "2 hours"
results.event_timestamp : Wed Jul 23 2014 14:31:00 GMT+0200 (EEST)
How can I handle this, I tried setting timezones in Mysql & Nodejs but to no avail.