Great, understand now, thank you. Is it possible in Django to have a "global" models.py that can be used across all the Django apps so that "myapp_" isn't prefixed onto the model class/kind, or even better, is it possible to "turn off" this prefixing behaviour in Django (with or without hacking the code)?
2010/1/9 [email protected] <[email protected]> > May not exactly same as your situation, but I'm running AEP and webapp > on same gae application and share same model, by "version", described > as item2 on following link. > > http://googleappengine.blogspot.com/2009/06/10-things-you-probably-didnt-know-about.html > > for example: > > http://myappid.appspot.com : default version, aep code > - define model in myapp.models as > class MyEntity(db.Model): > > http://mywebapp.myappid.appspot.com: version "mywebapp", webapp code > - define model as > class myapp_myentity(db.Model): > > -- > You received this message because you are subscribed to the Google Groups > "app-engine-patch" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<app-engine-patch%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/app-engine-patch?hl=en. > > > >--
You received this message because you are subscribed to the Google Groups "app-engine-patch" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/app-engine-patch?hl=en.
