On Mon, 2006-10-02 at 17:54 -0400, Seemant Kulleen wrote:
> Dear All,
> 
> I've attached two files: people/models.py and services/models.py.  I
> have two many-to-many relationships defined: one is between people and
> roles (each person can fill many roles, and each role can be filled by
> many people); and one is between each activity in the service (banner
> bearer, crucifer, and so on) and people (each activity can be performed
> by many people in a specific role and each person can perform many
> activities).  Chris Long and tomaw helped me come up with appropriate
> "limit_choices_to" constructs in the services/models.py to restrict each
> activity to specific roles -- so that in the admin etc, only specific
> people are presented as choices for each activity.  Now, when I run
> python manage.py syncdb (with sqlite3 and postgresql both), I get the
> following error:
> 
> 
> Error: Couldn't install apps, because there were errors in one or more
> models:
> 3crowns.services: no such table: people_role

You don't seem to have included the limit_choices_to constructs in the
examples you've posted.

It's possible this is a bug in the way the SQL is constructed. Does the
output of "manage.py sqlall <apps>" try to access the people_role table
before it is constructed (replace <apps> with the name of the two
applications here, since I don't know what they're called)?

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to