Aha! Fixed it. I commented out all of the apps I added to the project, and then ran ./ manage.py syncdb, then I had to uncomment each app and sync one by one.
I think my problem was that I had one app depending on the other, and that was causing the error. Dane Larsen On Apr 26, 9:49 pm, larsendt <[email protected]> wrote: > I'm having issues creating a newdatabasefor my app. I'm using the > Django 1.2 beta. > I wrote the "people" app on another computer, and now I'm trying to > get it working on a little server I have set up. > When I try: > > ./manage.py sqlall people > > I get theerror: > > django.db.utils.DatabaseError: (1146, "Table > 'peace_tracker_db.people_person' doesn't exist") > > I have already created the db in MySQL. > The same thing happens when I use ./manage.py syncdb > > From what I've read elsewhere, there's a bug that has a similar effect > when using multiple databases, but I am only using onedatabase. > > Any suggestions? > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group > athttp://groups.google.com/group/django-users?hl=en. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

