Re: Newbie question on re-defining an XML schema in my Django data model...

2011-11-29 Thread Brian Schott
Marc, There is a couple of ways to do this on top of the Django ORM. You probably want to use a many-to-many relationship with an extra index field. https://docs.djangoproject.com/en/dev/topics/db/models/#extra-fields-on-many-to-many-relationships class SingularWorkFlow(models.Model):

Re: Newbie question on re-defining an XML schema in my Django data model...

2011-11-29 Thread Tom Evans
On Tue, Nov 29, 2011 at 3:44 PM, Marc Edwards wrote: > I need some help in resetting my thinking on creating my Django data > model. > > I have previously created an XML schema definition for my data model, > but am now trying to re-create this XML data model in a Django data > model. > > In my XM

Newbie question on re-defining an XML schema in my Django data model...

2011-11-29 Thread Marc Edwards
I need some help in resetting my thinking on creating my Django data model. I have previously created an XML schema definition for my data model, but am now trying to re-create this XML data model in a Django data model. In my XML schema, I had defined "collections" of XML complex types that esse