I am trying to take some data schemes already setup in SQLObject and
use the Django model-api instead.

My SQLObject has things like:

class account(SQLObject):
   accountsaccessrequest   = MultipleJoin('accountsaccessrequest')

class accountsaccessrequest(SQLObject):
   account        =  ForeignKey('account')

So I tryed to convert this with:

class account(meta.Model):
   accountsaccessrequest   =
meta.ManyToManyField(accountsaccessrequest)

class accountsaccessrequest(meta.Model):
   account        = meta.ForeignKey(account)

Although, this clearly will not work because 'accountsaccessrequest' is
not yet defined.

I got around the validation error by making a accountsaccessrequest the
prototype, "class accountsaccessrequest(meta.Model): pass". Although
this tried to make two tables and would not work either.

Any ideas how I should proceed. Workarounds?

Kind Regards,

Brian Ray

Reply via email to