On May 5, 2008, at 8:56 PM, Timothy Wu wrote:
> Sounds like you need to update your Django models.
>
> I ran manage.py reset appname.  All the problems I describe still  
> remain. The admin interface is still having problems.
>

No, resetting the app will not help if your models.py file still  
contains models for the tables you no longer need.

In fact, resetting the app would have re-created the tables you no  
longer want, because they were still contained in your model. You will  
need to delete them from the model, end then drop the tables from our  
database yet again, or run reset once more.

--
Martin Diers

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