I am developing app that uses Cloudinary, using Django 1.8. I downloaded the sample project from https://github.com/cloudinary/cloudinary-django-sample. This line: image = CloudinaryField('image')
causes an error when runnig "manage.py migrate" saying
django.db.utils.OperationalError: near "None": syntax error
Tried adding "null=True" and "blank=True" to the field definition
image = CloudinaryField('image', null=True, blank=True)
but I am getting the same result. I import cloudinafield like this
from cloudinary.models import CloudinaryField
When I comment out the line with CloudinadyField there are no errors. What can be the reason of this error?