Remove the reset_db script. I should not be able to run it even in my dream.
--- a/scripts/reset_db.sh Thu Jan 20 06:00:17 2011 +0530
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-#! /bin/bash
-
-sudo -u postgres dropdb pytask
-sudo -u postgres createdb -O pytask pytask
-rm -r pytask/profile/migrations/
-rm -r pytask/taskapp/migrations/
-./bin/django schemamigration profile --initial
-./bin/django schemamigration taskapp --initial
-./bin/django syncdb
-./bin/django migrate profile
-./bin/django migrate taskapp
-./bin/django loaddata sites_fixture.json
-./bin/django loaddata profile_fixture.json