I know this probably seems like an orthogonal answer to your question, and also that you're just trying to get something going quickly, but it's really worth setting up South (http://south.aeracode.org/) for any meaningful Django project.
Unfortunately, after the fact South can't help you with your current problem, but using South will make it so that going forward your database changes can be applied and rolled back along with your code changes. Googling a little for "Django migrations" or "Django South migrations" will let you understand what South does and why having code-based migrations can really relieve stress! P.S. For your problem-of-the-moment, if you're using MySQL and can find the tool "MySQL Adminstrator" it's trivial to delete the columns manually. If you're using another SQL database you can probably find a similar tool or do this at the SQL command prompt. However, as the other responders said, it's safer to drop and recreate the table... or to use South. -- 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 django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.