I am very new to django, I am creating a model with a field of
models.ForeignKey(User) #django.contrib.auth.models import User. When
I look at the database, my table has no foreign key define. Another
example is the django.contrib.admin.models.LogEntry model it has user
= models.ForeignKey(User) which is also from
django.contrib.auth.models.user.

When the relationship is within the same namespace (am I using the
right term, pls correct me) the manage.py syncdb create the tables
without a problem if all the tables are create on the same time, but
if the tables weren't created the same time it also fail to create the
foreign keys.

Where should I look to correct this problem.

from django.db import models

from django.contrib.auth.models import User



# Create your models here.

DEPARTMENTS = (
     ('HRD', 'HRD'),
     ('ACT', 'Accounting'),
     ('PUR', 'Purchasing'),
     ('LOG', 'Logistics'),
     ('PRO', 'Production'),
     ('MKG', 'Marketing'),
     ('EXP', 'Export'),
     ('ITD', 'IT'),
)



LEVELS = (
     ('SM', 'Senior Manager'),
     ('MR', 'Manager'),
     ('SP', 'Supervisor'),
     ('ST', 'Staff'),
)

class Profile(models.Model):
     """KSK Employee accounts to use this application""
     user = models.ForeignKey(User)
     department = models.CharField(maxlength=3, choices=DEPARTMENTS)
     level = models.CharField(maxlength=3, choices=LEVELS)


Thanks james


--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to