Keeping you updated on Norm progress. * bool fields can be stored without custom parser or formatter. In SQLite, they are stored as 1 and 0, in PostgreSQL native BOOLEAN type is used. * times.DateTime fields are now also supported out of the box! In SQLite, they are stored as epoch timestamps, and in PostgreSQL native TIMESTAMP WITH TIME ZONE is used.
Changelog: [https://github.com/moigagoo/norm/blob/develop/changelog.md](https://github.com/moigagoo/norm/blob/develop/changelog.md) As before, you are free to use a custom parser and formatter for any type. These are just sane defaults. Also, one breaking change was introduced in formatIt pragma for SQLite backend: the expression in the pragma must explicitly evaluate to DbValue, implicit conversion has been removed. Thanks everybody who helped by opening issues, sharing feedback, and contributing code to the project. The next big milestone is supporting NULL values in PostgreSQL, which is unfortunately blocked by ndb progress.
