Newbie: Operational Error 1060 Duplicate column name

2010-09-23 Thread Howard Wolf
I'm fairly new to django and I'm trying to restart an old database. When I run the command run manage.py syncdb I get the following error: >run manage.py syncdb Creating table slide_taxonomyphylum ERROR: An unexpected error occured while tokenizing input The following traceback may be be corrupt

Re: Newbie: Operational Error 1060 Duplicate column name

2010-09-23 Thread Howard Wolf
It was a IPython internal error. -- 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 mo

Re: Newbie: Operational Error 1060 Duplicate column name

2010-09-23 Thread Howard Wolf
I delete the database and installed a new one with no tables at all. Using regular Python I ran the script manage.py with subcommand syncdb It created the first 4 tables then hit an error. Here is the traceback for the error. Traceback (most recent call last): File "manage.py", line 32, in

Re: Newbie: Operational Error 1060 Duplicate column name

2010-09-23 Thread Howard Wolf
I deleted the database and installed a new one with no tables at all. Using regular Python I ran the script manage.py with subcommand syncdb. It created the first 4 tables then hit an error. Here is the traceback for the error. Traceback (most recent call last): File "manage.py", line 32, in

Re: Newbie: Operational Error 1060 Duplicate column name

2010-09-23 Thread Howard Wolf
I want the foreign key to be called taxonomy_kingdom. So would I do something like this? taxonomy_kingdom = models.ForeignKey(TaxonomyKingdom, null=True, blank=True) superior=taxonomy_kingdom On Thu, Sep 23, 2010 at 10:18 PM, Karen Tracey wrote: > On Thu, Sep 23, 2010 at 1:03 PM, Howard W