I had a table in Postgres called user that was a custom model. I then switched over to the default Django User class, but there have been issues because of the name overlap. How can I either wipe the previous table, or wipe the entire DB (still in testing, so not a big deal) to start over?

link|improve this question

feedback

2 Answers

dropdb --help

Run this in the terminal

link|improve this answer
feedback

The simplest would be to execute a DROP TABLE statement directly in your database prompt, remember that Django models are just like any other table for your database

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.