views:

43

answers:

1

The Django Helper for Google App Engine creates BaseModel to allow a model to exist both in Django and App Engine. Does the helper provide a way to use Polymodels with Django?

+1  A: 

I'm not aware of any functionality in the helper to incorporate Polymodel. I think you're going to have to change BaseModel to inherit from Polymodel and test it out to see if anything breaks.

There was a question about this here, but no one responded. There's been some activity lately on the mailing list, so you might want to raise it again: http://groups.google.com/group/app-engine-django/browse_thread/thread/cdaba1ed81a9d958

dar