How can I store a datetime with SQLAlchemy? Should I even be using DateTime as the column type?
At the moment my date + time is in ISO format from the client (Javascript):
2015-04-13 01:00:00
How would I store this as UTC on the server? Would it be better to have a unix timestamp from the Javascript?