I'm trying to use App Engine datastore.
I had success deploying and it works until I try to upload, an error message shows in server log:
ValueError: The App Engine storage backend only supports BlobstoreFile instances or File instances whose file attribute is a BlobstoreFile.
I believe that the error is because in models.py it uses django's model class, which is models.FileField, but AppEngine requires db.BlobProperty().
Any idea of how to fix it?
I'm trying to use App Engine datastore.
I had success deploying and it works until I try to upload, an error message shows in server log:
ValueError: The App Engine storage backend only supports BlobstoreFile instances or File instances whose file attribute is a BlobstoreFile.
I believe that the error is because in models.py it uses django's model class, which is models.FileField, but AppEngine requires db.BlobProperty().
Any idea of how to fix it?