tags:

views:

129

answers:

5

How do I completely reset my Django (1.2 alpha) DB (dropping all tables, rather than just clearing them)?

manage.py flush does too little (won't work if there are schema changes) and manage.py reset requires me to specify all apps (and appears to take a format that is different from just " ".join(INSTALLED_APPS)). I can obviously achieve this in a DB specific way, but I figured there must be a sane, DB backend agnostic way to do this.

[Edit: I'm looking for something that I can call from a script, e.g. a Makefile and that continues to work if I change the backend DB or add to settings.INSTALLED_APPS]

+1  A: 

You want sqlreset:

% python manage.py help sqlreset
Usage: manage.py sqlreset [options] <appname appname ...>

Prints the DROP TABLE SQL, then the CREATE TABLE SQL, for the given app name(s).

Options:
  -v VERBOSITY, --verbosity=VERBOSITY
                        Verbosity level; 0=minimal output, 1=normal output,
                        2=all output
  --settings=SETTINGS   The Python path to a settings module, e.g.
                        "myproject.settings.main". If this isn't provided, the
                        DJANGO_SETTINGS_MODULE environment variable will be
                        used.
  --pythonpath=PYTHONPATH
                        A directory to add to the Python path, e.g.
                        "/home/djangoprojects/myproject".
  --traceback           Print traceback on exception
  --version             show program's version number and exit
  -h, --help            show this help message and exit

Just like when you modify a model, Django will not automatically do this for you. It will only output the commands for you to copy and paste.

jathanism
`manage.py reset` which I mentioned above just is a wrapper around `sqlreset` so exactly the same problem applies: I don't want to manually list all the appnames. I want a solution that can be automated and continues to work if I add to `INSTALLED_APPS` in `settings.py`.
as
You're gonna have to roll your own script then. I don't think this functionality exists as-is.
jathanism
A: 

Just assign a new database and drop this db from the db console. Seems to me to be the simplest.

Lakshman Prasad
Sorry, I should have made it clear that I need something that can be automated.
as
@as: How is a database drop not automatable? What's your database? Write a SQL script to `DROP DATABASE x;` and run it.
S.Lott
A: 

take a look at reset command in django's code, and write your own which drops/creates DB first.

Dmitry Shevchenko
A: 

Hm, maybe you lie to manage.py, pretending to make fixtures, but only to look for apps:

apps=$(python manage.py makefixture 2>&1 | egrep -v '(^Error|^django)'|awk -F . '{print $2}'|uniq); for i in $apps; do python manage.py sqlreset $i; done| grep DROP

That prints out a list of DROP TABLE statements for all apps tables of your project, excluding django tables itself. If you want to include them, remove the |^django pattern vom egrep.

But how to feed the correct database backend? sed/awk-ing through settings.conf? Or better by utilizing a little settings.conf-reading python script itself.

initall
+3  A: 

This Snippit gives you the code for a manage.py reset_db command you can install

Zach
You might as well just install Django command extensions to get reset_db and other goodies: http://code.google.com/p/django-command-extensions/
Adam Nelson
That looks promising!
jathanism
Great -- that looks exactly what I need!
as