FieldDoesNotExist: changes in document creation (from 0.8.7 to 0.9.0)? · Issue #970 · MongoEngine/mongoengine

Hi, I think the best way of explaining my issue is with an example: class Test(db.Document): meta = { 'collection': 'test', } str1 = StringField() str2 = StringField() In 0.8.7 you could do: >>> da...