In case anyone else encounters this issue (not sure how I am the first), this is actually a bug when using django with pymysql.
There is a function called 'supports microsecond precision <https://github.com/django/django/blob/6bf7964023487f2a352084e74aca27aecb354d6c/django/db/backends/mysql/features.py#L51>', which looks at the version. Can be monkey patched with the following code in settings.py: import pymysql pymysql.install_as_MySQLdb() pymysql.version_info = (1, 2, 5) -- You received this message because you are subscribed to the Google Groups "Django REST framework" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
