0

My goal is to remove all tables in database(I'm using mySQL). Everytime I use sqlclear, it required app_names. How to remove all tables for each app?

Mike Lee
  • 1,859
  • 2
  • 14
  • 15

1 Answers1

1

As far as I know, there is no management command to drop all tables. You can write your own custom command to do that. Or you can use MySQL command to drop and create your database and then run syncdb.

arulmr
  • 8,620
  • 9
  • 54
  • 69