I've got a csv file filled with directory paths, users and their
permissions...

I have a database for paths and users
I need to go to every path and find which user has what permissions for
that path.

do I need to make a
class Web_Permission(models.Model):
  path = models.ForeignKey(Web_Path)
  perms = models.IntegerField(choices=PERMISSIONS)
  user = models.ForeignKey(Web_User)

How would you model this data?


--~--~---------~--~----~------------~-------~--~----~
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