Hi, I'm beginner.

I tried to execute 'manage.py syncDB' command,
but it's not work.

My package is like ..

MyProject----Master---models.py
        |      ----Appli-----models.py


MyProject/Appli/models.py is ..
//-------------------------------------
from Master.models import WebBrowser

class Appli(models.Model):
    # id
    id = models.CharField(u'id', max_length=20, blank=False,
primary_key=True)
    # support_browser
    support_browser = models.ManyToManyField(WebBrowser,blank=True)

    def __unicode__(self):
        return self.name
----------------------------------------//

I tried that with comment out import from above code,it's work.

Is this bad design?

I wish to anyone help me.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to